
function openWindow(name, width, height)	
{
	popWin = window.open("", name, "toolbar=0,menubar=0,resizable=yes,scrollbars=yes,width="+width+",height="+height);
 	popWin.focus();
}

function openWindow2(name, width, height)	
{
	popWin = window.open("", name, "toolbar=0,menubar=0,resizable=no,scrollbars=no,width="+width+",height="+height);
 	popWin.focus();
}

function popUp(theUrl, name, width, height)	
{
	popWin = window.open(theUrl, name, "toolbar=0,menubar=0,resizable=yes,scrollbars=0,width="+width+",height="+height);
 	popWin.focus();
}

