// 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,scrollbars=auto,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;
	}
}


Cufon.replace('h1,h2,h3,h4,h5,h6', {ignore: { a: true }});
Cufon.replace('.cms_nav',true);
Cufon.replace('.cufon_title');
Cufon.replace('.cms_sub_nav', true);


