// JavaScript Document
function get_url(url)
{
	window.location = url;	
}
function confirm_action(action,url)
{
	var ans = confirm(action);
	if(ans){ window.location = url; }
}
function open_popup(url,width,height)
{
	window.open (url,"mywindow","status=1,width="+width+",height="+height+""); 	
}

function itemFocus(field,val)
{
	var el = document.getElementById(field);
	if (el.value == val) {
		el.value = '';
	}
}

function itemFocusOut(field,val)
{
	var el = document.getElementById(field);
	if (el.value == '') {
		el.value = val;
	}
}

