/*
	popstuff 
	function to automatically add popup window calls to each link
	with a target, and add close window links to the popups.
*/

function ShowPopup(page,name,options)
{
Window = window.open(page,name,options);
}
