i wrote this to change my embedded swf depending on the location,
but it's not working.
it also disable other javascript on the page.
[HTML]
myDate = new Date();
myTD = myDate.getTimezoneOffset();
if ((myTD >= 180) && (myTD < 480)){
document.mySWF.src="alaska.swf";
}else if((myTD >=1 80) && (myTD < 180)){
document.mySWF.src="england.swf";
}else if((myTD >= -540) && (myTD < -180)){
document.mySWF.src="japan.swf";
}else{
document.mySWF.src="hawai.swf";
}
[/HTML]
thanx for your help.



