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,'','scrollbars,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 MOver(t)
{	
	t.style.cursor='pointer';
	t.style.color="#ffff00";
	//window.status='Hello';
}
function MOut(t)
{
	t.style.color="#ffffff";
}
function MOverPointer(t)
{
	t.style.cursor='default';
}
function PageLoad()
{
	//window.alert(parent.document.getElementById('lblhomepage').innerHTML);
	var ctrl;
	ctrl=parent.document.getElementById("lblhomepage");
	ctrl.style.color="#FFFFFF";
	
	ctrl=parent.document.getElementById("imghomepage");
	ctrl.setAttribute("src",".\\img\\point.gif");
	
	ctrl=parent.document.getElementById("lblhowtobuy");
	ctrl.style.color="#FFFFFF";
	ctrl=parent.document.getElementById("imghowtobuy");
	ctrl.setAttribute("src",".\\img\\point.gif");
	
	ctrl=parent.document.getElementById("lblfindateacher");
	ctrl.style.color="#FFFFFF";
	ctrl=parent.document.getElementById("imgfindateacher");
	ctrl.setAttribute("src",".\\img\\point.gif");
	
	ctrl=parent.document.getElementById("lblmakereview");
	ctrl.style.color="#FFFFFF";
	ctrl=parent.document.getElementById("imgmakereview");
	ctrl.setAttribute("src",".\\img\\point.gif");
	
	ctrl=parent.document.getElementById("lbldictionary");
	ctrl.style.color="#FFFFFF";
	ctrl=parent.document.getElementById("imgdictionary");
	ctrl.setAttribute("src",".\\img\\point.gif");
	
	ctrl=parent.document.getElementById("lblsupport");
	ctrl.style.color="#FFFFFF";
	ctrl=parent.document.getElementById("imgsupport");
	ctrl.setAttribute("src",".\\img\\point.gif");
	
	ctrl=parent.document.getElementById("lblsuggestion");
	ctrl.style.color="#FFFFFF";
	ctrl=parent.document.getElementById("imgsuggestion");
	ctrl.setAttribute("src",".\\img\\point.gif");
	
	ctrl=parent.document.getElementById("lblother");
	ctrl.style.color="#FFFFFF";
	ctrl=parent.document.getElementById("imgother");
	ctrl.setAttribute("src",".\\img\\point.gif");				
}		