function openWindow(target) {
	myWindow = window.open(target,'info','status=no,toolbar=no,scrollbars=yes,location=no,menubar=no,resizable=yes,width=550,height=460,top=0,left=0');
	myWindow.focus();
	return false;
}
function imagePopup(title,src,x,y) {
	var image=window.open('','popup','width='+x+',height='+y+',top=100,left=100,resizable=yes,scrollbars=no');
	image.document.write('<html>\n<head>\n<title>'+title+'</title>\n</head>');
	image.document.write('<body style="margin:0; padding:0;">\n');
	image.document.write('<a href="#" onclick="window.close()">');
	image.document.write('<img src="'+src+'" width="'+x+'" height="'+y+'" border="0">');
	image.document.write('</a>\n');
	image.document.write('</body>\n</html>\n');
	image.document.close();
	return true;
}

