function PopupPage(Path,W,H)
{
	//var n=window.open(Path,'','status=0');
	var l=(screen.availWidth-W)/2
	var t=(screen.availHeight-H)/2
	var n=window.open(Path,'','status=0,height=' + H + ',width='+ W + ', left=' + l + ', top=' + t );	
	//n.resizeTo(W,H);	
	//n.location=Path
	n.focus();
}
function PopupPage1(Path,W,H)
{
	//var n=window.open(Path,'','status=0');
	var l=(screen.availWidth-W)/2
	var t=(screen.availHeight-H)/2
	var n=window.open(Path,'','scrollbars=1,status=0,height=' + H + ',width='+ W + ', left=' + l + ', top=' + t );	
	//n.resizeTo(W,H);	
	//n.location=Path
	n.focus();
}

function PopupWindow(Path,W,H,WindowName)
{
	//var n=window.open(Path,'','status=0');
	var l=(screen.availWidth-W)/2
	var t=(screen.availHeight-H)/2
	var n=window.open(Path,WindowName,'status=0,height=' + H + ',width='+ W + ', left=' + l + ', top=' + t );	
	//n.resizeTo(W,H);	
	//n.location=Path
	n.focus();
}

function MOver(t)
{
	t.style.cursor='Hand';
	t.style.color="#ffff00";
	//window.status='Hello';
}
function MOut(t)
{
	t.style.color="#ffffff";
}
function MOverPointer(t)
{
	t.style.cursor='default';
}
function PageLoad()
{
	parent.document.getElementById("lblhomepage").style.color="#FFFFFF";
	parent.document.getElementById("imghomepage").setAttribute("src",".\\img\\point.gif")
	
	parent.document.getElementById("lblhowtobuy").style.color="#FFFFFF";
	parent.document.getElementById("imghowtobuy").setAttribute("src",".\\img\\point.gif")
	
	parent.document.getElementById("lblfindateacher").style.color="#FFFFFF";
	parent.document.getElementById("imgfindateacher").setAttribute("src",".\\img\\point.gif")
	
	parent.document.getElementById("lblmakereview").style.color="#FFFFFF";
	parent.document.getElementById("imgmakereview").setAttribute("src",".\\img\\point.gif")
	
	parent.document.getElementById("lbldictionary").style.color="#FFFFFF";
	parent.document.getElementById("imgdictionary").setAttribute("src",".\\img\\point.gif")
	
	parent.document.getElementById("lblsupport").style.color="#FFFFFF";
	parent.document.getElementById("imgsupport").setAttribute("src",".\\img\\point.gif")
	
	parent.document.getElementById("lblsuggestion").style.color="#FFFFFF";
	parent.document.getElementById("imgsuggestion").setAttribute("src",".\\img\\point.gif")
	
	parent.document.getElementById("lblother").style.color="#FFFFFF";
	parent.document.getElementById("imgother").setAttribute("src",".\\img\\point.gif")				
}

