function closewindow(){window.close()}

function InWindow(theURL) {soft = window.open(theURL, 'IMG', 'width=640, height=600');soft.moveTo(50,50);}


function InWindowP(TITLE,IMG) {
	text =  "<html>\n<head>\n<title>"+TITLE+"</title>\n<body onLoad='window.focus()'>\n";
	text += "<center>\n";
	text += "<img src='"+IMG+"' alt='' border='0'>";
	text += "</center>\n</body>\n</html>\n";
	soft = window.open('', 'IMG', 'width=345, height=485');
	soft.document.write(text);
	soft.moveTo(50,50);
	soft.document.close();

}
