// JavaScript Document /* popup */

function popwindow(){
		openWithSelfMain("images/000.jpg", "TPSSS", "800" , "600");
}



<!--
	function openWithSelfMain() {
		var url = "images/000.jpg";
		var name = "TPSSS";
		var width = "800";
		var height = "600";
		var options="width="+width+",height="+height+"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no";
	new_window=window.open(url,name,options);
	window.self.name="main";
	new_window.moveTo(((screen.availWidth/2)-(width/2)),((screen.availHeight/2)-(height/2)))
	new_window.focus();
	}

//-->



function onclose()

{
document.getElementById('popup').style.display='none';
}

//-->


