// JavaScript Document
function image_window(page,wd,hg,name){
	popup=window.open(page,name,"width=" + wd + ",height=" + hg + ",scrollbars=1,resizable=yes,menubar=no,locationbar=no,toolbar=no,left=30,top=30");
	popup.focus();
}

function image_window_map(img,wd,hg,name) {
	var generator=window.open('',name,"width=" + wd + ",height=" + hg + ",toolbar=no,location=no,directories=no,scrollbars=no,resizable=no,status=no,menubar=yes,locationbar=no,left=270,top=180");
	generator.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" generator.document.write "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
	generator.document.write('<html xmlns="http://www.w3.org/1999/xhtml">');
	generator.document.write('<head>');
	generator.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />');
	generator.document.write('<title>' + name + '</title>');
	generator.document.write('<link href="../common/CSS/CSS_Style.css" rel="stylesheet" type="text/css" />');
	generator.document.write('<style type="text/css">');
	generator.document.write('<!--');
	generator.document.write('body {');
	generator.document.write('	margin-left: 0px;');
	generator.document.write('	margin-top: 0px;');
	generator.document.write('	margin-bottom:0px;');
	generator.document.write('	margin-right:0px;');
	generator.document.write('}');
	generator.document.write('-->');
	generator.document.write('</style>');
	generator.document.write('</head>');
	generator.document.write('<body leftmargin="0px" marginwidth="0px">');
	generator.document.write('<a href="javascript:self.close()"><img src="' + img + '" alt="' + name + '" /></a>');	generator.document.close();
}

