var NS = IE = Mac = false;
var navVer = navigator.appVersion;
 
if(navVer.substr(0,3) >= 4) 
{
 if(navigator.appName == 'Netscape')
 {
    	NS = true;
 } else
 {
	IE = true;
 }
}

if (navigator.platform.indexOf("Mac") >= 0)
 Mac=true;


function onover(imgName,name) {
        document[imgName].src = eval("'" + name + "'");
}

function popup(imageName) {
	if(IE==false) 
	 location.href=""+imageName;
	else{
	pic=window.open('','pic','width=1,height=1,toolbar=no,status=no,title=no,left=0,top=0');
	if (pic.document['picture']){ 
	 pic.document['picture'].src=""+imageName;
	 pic.focus();
	}
	else{
      pic.document.write("<html> <head> <title> Cho's TKD Pictures </title></head>");
	pic.document.write("<body style='margin:0px' bgcolor='#000000'>");
	pic.document.write("<img src='" + imageName + "' border=0 name='picture' onload='window.resizeTo(this.width,this.height+30);'>");
	pic.document.write("</body></html>");
       }
	}
 }

