// Programmer : Saeed Dabir Sepehri , E-mail : info@sds-solutions.com , Web : http://www.sds-solutions.com/
var mytop
mytop = "" + top.location;
var i
var j
var mysecondstr
var myfirststr
var mytemp1
var mytemp2
i = mytop.indexOf(".com/");
j = mytop.length;
if ( i + 5 != j && mytop.indexOf("page=") < 0 ){
	myfirststr = mytop.substring(0,i+5);
	mysecondstr = mytop.substring(i+5,mytop.length);
	j = mysecondstr.indexOf("?");
	if ( j > 0 ){
		mytemp1 = mysecondstr.substring(0,j);
		mytemp2 = mysecondstr.substring(j+1,mysecondstr.length);
		mysecondstr = mytemp1 + "&" + mytemp2;
	}
	top.location = myfirststr + "default.asp?page=" + mysecondstr;
	
}	