function popUpWithScroll(url,name,w,h)
{
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	var winprops = "width=" + w + ",height=" + h + ",top=" + wint + ",left=" + winl + ",directories=no,location=no,menubar=no,resizable=no,scrollbars=yes,status=no,toolbar=no";
	var win = window.open(url,name,winprops);
}

function popUp(url,name,w,h)
{
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	var winprops = "width=" + w + ",height=" + h + ",top=" + wint + ",left=" + winl + ",directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no";
	var win = window.open(url,name,winprops);
}

function popUpAddOn(url,name,w,h)
{
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	var winprops = "width=" + w + ",height=" + h + ",top=" + wint + ",left=" + winl + ",directories=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no";
	var win = window.open(url,name,winprops);
}