// JavaScript For Site
<!--
function confirm_remove(url) {
	input_box=confirm("Are you sure you wish to remove this item?");
	if (input_box==true) { // Output when OK is clicked
		window.location=url;
	} else { // Output when Cancel is clicked
	}
}

function popupform(myform, windowname)
{
if (! window.focus)return true;
window.open('', windowname, 'top='+((screen.height - 600) / 2)+',left='+((screen.width - 500) / 2)+'+, height=600,width=500,scrollbars=yes');
myform.target=windowname;
return true;
}

function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'top='+((screen.height - 600) / 2)+',left='+((screen.width - 500) / 2)+'+, height=600,width=500,scrollbars=yes');
return false;
}

function PopupWindow(url, width , height){
	var leftVal = (screen.width - width) / 2;
	var topVal = (screen.height - height) / 2;
	var sFeature = "top=" + topVal + ",left=" + leftVal + ",width=" + width + ",height=" + height + ",toolbar=yes,resizable=yes,scrollbars=yes,status=yes"
	window.open(url, 'popup', sFeature); 
}
//-->
