
function miscPopUp(url) {
	var width = "547";
	var height = "350";
	var name = "popup";        	
	var newWin;
	
	this.href = '#';
	this.target = '';
	
	miscWin = window.open( url, name, "width=" + width + ",height=" + height + "scrollbars=no, resizable=disallow");
	miscWin.focus();
	//miscWin.creator = self;
	return false;
}
