// JavaScript Document
	function lihatgambar(lokasi,win_lebar, win_tinggi) 
	{

		OpenWindow=window.open(lokasi, "newwin", "height="+win_tinggi+", width="+win_lebar+", left=100, top=100, toolbar=no,scrollbars="+scroll+",menubar=no");
		OpenWindow.document.write("<title>www.moe.gov.my</title>")
		OpenWindow.document.write("<body bgcolor=black leftmargin=0 topmargin=0 >")
		OpenWindow.document.write("<img src="+lokasi+">")
		OpenWindow.document.write("</body>")
		OpenWindow.document.write("</html>")
		OpenWindow.focus()
		OpenWindow.document.close()
		//self.name="main"

		//window.open(this.href, 'Portal MOE', 'width=600, height=500, scrollbars=yes, left=0, top=20')
		//buka_kerangka = window.open(lokasi, 'Portal MOE', 'width=600, height=500, scrollbars=yes, left=0, top=20')
		//buka_kerangka.focus()
	}