function International(toCountry){
var currentDomain = new String(parent.location.hostname);
var toCountry = new String(toCountry);
var mainURL= new String(parent.location);
var newURL = mainURL.replace(currentDomain, toCountry);
window.location=newURL;
}