﻿/****************************************************************/
/* Page Filters													*/
/* By Mohammad Mahdi Saffari									*/
/* Tehran Technology Center Co.									*/
/* Email: mmsaffari@gmail.com									*/
/****************************************************************/

var pd=document.parentWindow.parent.document;	//Parent Document
var pdmf=pd.getElementById("IFMAIN");			//The IFMAIN IFrame inside pd
try{
	if (document.title == "خانه"){
		pd.title="به وب سايت پرآور پارس خوش آمديد."
		pd.getElementById("topInfoCell").innerText=document.title;
	}
	else{
		pd.title="پرآور پارس" + "|" + document.title;
		pd.getElementById("topInfoCell").innerHTML="<span dir=rtl>" + pd.title + "</span>";
	}
} catch (e){};

window.onload=function onl(){
	window.scroll(0,100);
	window.scroll(0,0);
};

