function build_window(title, img, w, h){
	win = window.open('','','width='+w+',height='+h+',menubar=0,toolbar=0,location=0,scrollbars=0,resizable=0');
	win.document.write("\
		<html>\
			<head>\
				<title>"+title+"</title>\
			</head>\
			<style>\
				*{padding:0px; margin:0px;}\
			</style>\
			<body><img src='http://"+location.hostname+"/templates/images/"+img+"'></body>\
		</html>\
	");
}
