function MM_openBrWindow(theURL,winName,features) { //v2.0
  var newWin=window.open(theURL,winName,features);
  newWin.focus();
}
function goToPg(pg)
{
	window.location.href=pg;
}
function shadowWindow(url)
{
	width=700;
	height=750;
	if(arguments[1])
	{
		width=arguments[1];
	}
	if(arguments[2])
	{
		height=arguments[2];
	}
	Shadowbox.open({
						content: url,
						player: "iframe",
						width: width,
						height: height,
						handleOversize: "resize"
					});	
}
function parentShadowWindow(url)
{
	width=700;
	height=750;
	if(arguments[1])
	{
		width=arguments[1];
	}
	if(arguments[2])
	{
		height=arguments[2];
	}
	parent.Shadowbox.open({
						content: url,
						player: "iframe",
						width: width,
						height: height,
						handleOversize: "resize"
					});	
}

