 function closeMe()
 {
	self.close();
 }
 
 function ForwardPage(cultureName) 
 {
 var winName = "forward";
 var features = "width=480,height=320";
 var theURL = "/Pages/Forward.htm?link=" + location; 
 
	if(cultureName != undefined && cultureName != "en" && cultureName != "undefined") 
	{
		theURL = "/Pages/Forward_" + cultureName + ".htm?link=" + location; 
	}
	
 open(theURL,winName,features);
 
 }
