//counter here
var y=location.href
//document.write("URL="+y+"<br>");
var myURL=y.slice(y.indexOf("/")+2,-4);
//document.write(myURL+"<br>");

var split_URL=myURL.split("/");
var site=split_URL[0];
var group=split_URL[1];
var product=split_URL[split_URL.length-2];
var page=split_URL[split_URL.length-1];



function destore()
{

   urlstr="http://www.ulead.de/store/"+product+"/"
   location.href=urlstr
   
}


function frstore()
{
   urlstr="http://www.ulead.co.uk/fr/store/"+product+"/"
   location.href=urlstr
   
}


