/*
 * @version     $Id: popup.js,v 1.7 2002/04/23 21:11:58 cmv Exp $
 * @copyright   2000, easyDNS Technologies Inc.
 */


function quickHelp(which) {
	var file = '/quickhelp.php?' + which;
	var props = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,' + 
		'resizable=1,width=500,height=250';
	qhWin = window.open(file, 'qhWin', props );
//	qhWin.creator = self;
}


function popup(url,w,h) {
	var props = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,' + 
		'resizable=1,width=' + w + ',height=' + h;
	popWin = window.open(url, 'popWin', props );
}


