function openPopWin(url,name,width,height,scroll,resize,left,top,toolbar) 
{
	var popup = window.open(url, name, 'toolbar=' + toolbar + ',location=0,directories=0,status=0, menubar=0,scrollbars=' + scroll + ',resizable=' + resize + ',width=' + width + ',height=' + height + ',left=' + left + ',top=' + top);
	popup.focus();
	if( navigator.appName.substring(0,8) == "Netscape" ) {
		popup.location = popupURL;
	}
}

