// JavaScript Document
<script language="javascript" type="text/javascript">
<!--
function popitup(url)
{
	newwindow=window.open(url,'name','height=200,width=150');
	if (window.focus) {newwindow.focus()}
	return false;
}
//sample
//<a href="popupex.html" onclick="return popitup('popupex.html')"
//	>Link to popup</a>

// -->
</script>

