
/* Common functions */

function popWindowSmall(href,target) {
	/* pop a window */
	window.open(href, target, 
		'scrollbars=yes,status=no,width=500,height=300' +
		',resizable=yes');
	return false;
}

function popWindowSized(href,target,width,height) {
	/* pop a window */
	window.open(href, target, 
		'scrollbars=no,status=no,width='+width+',height='+height +
		',resizable=yes');
	return false;
}
