// Functions - JavaScript Document

function popupWindow(url, name, width, height)
{
	var load = window.open(url,name,'scrollbars=yes,menubar=no,height='+height+',width='+width+',resizable=yes,toolbar=no,location=no,status=no');
}