// popup window scripts
// Fredrik Petersson - v1.3 - 3 June 2002
// call this by e.g <a href="#" onClick="javascript:popup('foo.html', '300', '300')">foo popup</A>

// fixed-window popup
function popup(url, w, h) {
	window.open(url, '_blank', 'location=no,status=no,menubar=no,scrollbars=no,resizable=no,toolbar=no,directories=no,width='+w+',height='+h);
}

// scrollable and resizable popup
function popupFlex(url, w, h) {
	window.open(url, '_blank', 'location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,toolbar=no,directories=no,width='+w+',height='+h); 
}

