//Resizable pop-up window script written by Tricia M. Smith, 5-10-06.
//This script is released under a Creative Commons License (http://creativecommons.org/licenses/by-nc-sa/2.0/)

var newwindow = '';
function popIt(pageName,winWidth,winHeight) {

	{
newwindow = window.open(pageName,'mypop','left=200,top=150,height='+winHeight+',width='+winWidth+',toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
newwindow.resizeTo(winWidth+5,winHeight+50);

}
	if (window.focus) {newwindow.focus()}
	return false;
}

