function imgnewwin(img,w,h)
{
sub = window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+w+',height='+h);
sub.document.writeln('<title>'+img+'</title>');
sub.document.writeln('<img src="'+img+'" onClick="window.close();" style="cursor:pointer;">');
sub.document.writeln('<form><input type=button value="•Â‚¶‚é" onClick="window.close();"></form>');
}
function CSClickReturn () {
var bAgent = window.navigator.userAgent;
var bAppName = window.navigator.appName;
if ((bAppName.indexOf("Explorer") >= 0) && (bAgent.indexOf("Mozilla/3") >= 0) && (bAgent.indexOf("Mac") >= 0))
return true; // dont follow link
else return false; // dont follow link
}