Iam developing a multi-lingual site, for that i need to modify the charset according to the language selected.
The following code works fine in IE but not in Netscape navigator (7.1v)
function getLanguage(str){
if(str=="english")
document.charset="iso-8859-1";
else{
document.charset="GB2312";
}
How to make it in Netscape.
Thanx,
Arun
UserAgent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; en) Opera 8.50

