// JavaScript Document

function showpopup(popup_url, popup_name, pheight, pwidth) {
	strpopup_url = new String(popup_url)
	strpopup_name = new String(popup_name)
	
	myWindow = window.open(strpopup_url,strpopup_name,'height='+pheight+',width='+pwidth+',toolbar=no,titlebar=no,resizable=no')
	myWindow.focus();
}
