<!--
/* Author: mehmet efe (Aug 2003)
created to simplify popUps
expects: URL, width, height */
function popThis(loc,w,h) {
if (w || h) {
	window.open(loc,'thePop','width='+w+',height='+h+',directories=no,location=no,menubar=no,scrollbars=1,status=yes,toolbar=no,resizable=yes');
}
else {
window.open(loc,'thePop','width=400,height=375,directories=no,location=no,menubar=no,scrollbars=1,status=yes,toolbar=no,resizable=yes');
}
}
// -->
