// JavaScript Document
//----------------------------------------------------------
	// Name		: popwin
	// Purpose	: Create Popup Window
	//----------------------------------------------------------
//
	function popwin(url, width, height, location, menubar, status, toolbar)
	{
		
		
		if (width == null)
		{
			width = 400;
		}
		if (height == null)
		{
			height = 400;
		}
		if (location == null)
		{
			location = "no"
		}
		if (menubar == null)
		{
			menubar = "no"
		}
		if (status == null)
		{
			status = "yes"
		}
		if (toolbar == null)
		{
			toolbar = "no"
		}
		if (toolbar == null)
		{
			toolbar = "no"
		}
		popup = window.open(url, 'movie', 'width=' + width + ',height=' + height + ',location=' + location + ',menubar=' + menubar + ',status=' + status + ',toolbar=' + toolbar +',scrollbars=yes,resizable=yes,screenx=0,screeny=0,left=0,top=0');
		if (window.focus) setTimeout("popup.focus()",100);
	} 