function purePopup(url, name, width, height) {
	options = 'toolbar=no,resizable=no,scrollbars=yes,menubar=no,width='+width+',height='+height;
	window.open(url,name,options);
}

function popupFullWindow(url, name, width, height) {
	options = 'toolbar=yes,resizable=yes,scrollbars=yes,menubar=yes,width='+width+',height='+height;
	window.open(url,name,options);
}

function popupResize(url, name, width, height) {
	options = 'toolbar=no,resizable=yes,scrollbars=yes,menubar=no,width='+width+',height='+height;
	window.open(url,name,options);
}