// JavaScript Document

var uAgent = navigator.userAgent;
ua = 0 ;

if (document.all && uAgent.indexOf('Win') >= 0){
ua = "W_IE" ;
}

else if(document.all && uAgent.indexOf('Mac') >= 0){
ua = "M_IE"  ;
}

function open_img(win,url,w,h) {
	if(document.getElementById){
	h=+h+20;
	}
	if(ua=="W_IE"){
	h=+h+10;
	w=+w+10;
	}
	else if(ua=="M_IE"){
	h=+h-20;
	}
	
	myImg = window.open('','imgwin','width='+w+',height='+h+',scrollbars=no,resizable=yes');
	myImg.document.open();
	myImg.document.write('<html>');
	myImg.document.write('<head>');
	myImg.document.write('<title>' ,'IMG', '<','/title>');
	myImg.document.write('<','/head>');
	myImg.document.write('<body style=\'margin:0;background:rgb(0,0,0);\' onLoad=\'focus()\;resizeTo(',w,'\,',h,');\'>');
	myImg.document.write('<a href=\'Javascript:window.close()\'><img src=\"' , url , '\" style=\'border=none\'></a>' );
	myImg.document.write('<' , '/body>');
	myImg.document.write('<' , '/html>');
	myImg.document.close();
}

function openSub(str) {
	win=window.open(str,"win","width=500,height=500,top=0,scrollbars=yes,resizable=yes");
}