//version 1.0.0.0

function openImageWin(src,title,w,h,name,imgw,imgh) {
	imgw = (!imgw)? w : imgw;
	imgh = (!imgh)? h : imgh;
	w = (imgh>h)? w+17 : w;
	scrollvalue = (imgh>h)? 'yes' : 'no';
	win = eval('window.open("","'+name+'","width='+w+', left='+(screen.width-w)/2+', top='+(screen.height-h)/2+',height='+h+',innerWidth='+w+',innerHeight='+h+'")'); 
	win.document.open();
	win.document.write('<html><head><title>'+title+'</title></head>');
	win.document.write('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" scroll="'+scrollvalue+'">');
	win.document.write('<img src="'+src+'" width="'+imgw+'" height="'+imgh+'">');
	win.document.write('</body></html>');
	win.document.close();
	win.focus();
};

function openNewWin(content,title,w,h) {
	win = eval('window.open("","","width='+w+',height='+h+',innerWidth='+w+',innerHeight='+h+'")'); 
	win.document.open();
	win.document.write('<html><head><title>'+title+'</title></head>');
	win.document.write('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"></body></html>');
	win.document.write(content);
	win.document.write('</body></html>');
	
	win.document.close();
	win.focus();
};

function openWin(src,name,w,h,status,scrollbars) {
	eval('window.open("'+src+'","'+name+'","width='+w+',height='+h+',innerWidth='+w+',innerHeight='+h+',status='+status+',scrollbars='+scrollbars+'")'); 
};
