var scrollBar = "'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,";
var noScrollBar = "'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,";
browserType 	= navigator.appName; 

function maketoolbar(h,w,type){

	if (browserType == 'Netscape'){
		h = h + 5;
	}

	if (type == "scrollBar"){
		temp = scrollBar + "height=" + h + ",width=" + w;
		return temp;
	}else if (type == "noScrollBar"){
		temp = noScrollBar + "height=" + h + ",width=" + w;
		return temp;
	} 
}

function urlPop(url,h,w,type) {

	temptool =	maketoolbar(h,w,type);	

	now = new Date();

	pop = window.open('',now.getSeconds(),temptool);
	pop = window.open('',now.getSeconds(),temptool);
	pop.location.href = url;	 
}