<!--

var newWindow;
var pageID;
var currentURL;

currentURL = document.URL;
document.title="Kryegjyshata Boterore Bektashiane";

	if(currentURL.indexOf("?")+1 != ""){
		var stringVar = currentURL.slice(currentURL.indexOf("?")+1, currentURL.length );
			if (stringVar){
				pageID = stringVar;
				//document.write(pageID);
			}
			else{
				var checkString = stringVar.slice(stringVar.indexOf(".")+1,stringVar.indexOf("m")+1);
				//document.write(checkString);
				if (checkString == "Kryegjyshata Boterore Bektashiane"){
					popUpWindow(stringVar,"taf","500","400","no");
				}
				else{}
			}
	}
function exit(msg){
	document.write("<font color='#FFFFFF'>"+msg+"<\/font>");
	return false;
}

function popUpWindow(URL,loc,w,h,scroll) {

	var l = (screen.width/2) - (w/2);
	var t = (screen.height/2) - (h/2);

	newWindow = window.open(URL +"?rm="+Math.random()*9999,loc,"width="+ w +",height="+ h +",scrollbars="+ scroll +",top="+ t +",left="+ l +"");
}

//-->