<!--
// Copyright (c) 2001 HeadMinder, Inc.
// All Rights Reserved.

function popWin(url,width,height) {
	var winopts = 'width=' + width + ',height=' + height + ',toolbar=0,location=0,status=1,scrollbars=1,resizable=1';
	var popUpWin = window.open(url,'popUp',winopts);
	popUpWin.focus();
}

function popWinLoc(url,width,height) {
	var winopts = 'width=' + width + ',height=' + height + ',toolbar=0,location=1,status=1,scrollbars=1,resizable=1';
	var popUpWin = window.open(url,'popUp',winopts);
	popUpWin.focus();
}

//-->