if( window.top.frames.length > 1 ) window.top.location.href='http://www.pawaq.com/';

var mMarked = new Array();

function mClear() {
	if(document.getElementById){
		for(var id in mMarked)document.getElementById(id).className=mMarked[id];
		mMarked=new Array();
		document.onmousemove=null;
		document.getElementById("mhelp").style.visibility="hidden";
	}
}

function mTrack(e) {
	if(document.getElementById){
			document.getElementById("mhelp").style.top=event.y+10;
			document.getElementById("mhelp").style.left=event.x+10;
			document.getElementById("mhelp").style.visibility="visible";
	}
}

function mMark(id,text) {
	if(document.getElementById){
		var menu=id.match(/^[0-9A-Za-z]+/);
		mMarked[id]=document.getElementById(id).className;
		document.getElementById(id).className=menu+"h";
		if(text){
			document.getElementById("mhelp").firstChild.data=text;
			document.getElementById("mhelp").style.visibility="visible";
			// document.onmousemove=mTrack;
		}
	}
}

function openwin(url,name,features,doClose) {
    if(doClose){
        window.open("close.html",name,features);
	    window.setTimeout("window.open('"+url+"','"+name+"','"+features+"')",10);
    }else{
        window.open(url,name,features);
    }
}
