
function doOpenPopUpWindow(item,itemType,title,Height,width) {

	if (Height == '') Height = '500';
	else if (width == '') width = '400';

	openWindow = window.open("","newwin","height="+Height+",width="+width+",toolbar=no,scrollbars=yes,menubar=no,resizable=yes");
	openWindow.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\n')
	openWindow.document.write('<html>\n')
	openWindow.document.write('<head>\n')
	openWindow.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">')
	openWindow.document.write('<title>'+title+'</title>\n')
	openWindow.document.write('<link rel="stylesheet" href="../css/stylesheet.css" type="text/css">\n')
	openWindow.document.write('</head>\n')
	openWindow.document.write('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="20" rightmargin="0" bottommargin="0" align="center" marginwidth="0" marginheight="0">\n')
	if (itemType == 'img') openWindow.document.write('<img src="'+item+'">\n')
	else {
		openWindow.document.write('<table cellpadding="4">')
		openWindow.document.write('<tr>')
		openWindow.document.write('<td>')
		openWindow.document.write(item+'\n')
		openWindow.document.write('</td>')
		openWindow.document.write('</tr>')
		openWindow.document.write('</table>')

	}
	if (isEnglish()) {
	    openWindow.document.write('<div style="padding-right: 30px;" align="right"><a href="#" onClick="window.close();">[close]</a></div>\n')
	} else {
	    openWindow.document.write('<div style="padding-right: 30px;" align="right"><a href="#" onClick="window.close();">[tutup]</a></div>\n')
	}
	openWindow.document.write('</body>\n')
	openWindow.document.write('</html>\n')
	openWindow.document.close()
	self.name="main"
}