


var mytop= 0;
var myleft = 0;

function popItopen(theLoc,theW)
{
	if (document.layers || document.all)
	{
	window.open(theLoc,'theWin','width='+theW+',height=400,scrollbars=yes,resizable,top=10,left=10')
	}
	else
	{
	document.location = theLoc;
	}
}



