
// simple popup function

function openPopup(url,y,x,w,h) {
	window.open(url,'popup',width='+w+',height='+h+',left='+x+',top='+y+');
}
