function openNewWinNoOptions(url,w,h){
	myWidth = 800;
	myHeight = 600;

	if(url != null){//if url is supplied continue
		if(w != null){myWidth=w;}	//define w if it is not already defined
		if(h != null){myHeight=h;}	//define h if it is not already defined
		window.open(url,'_blank','width='+ this.myWidth +',height='+this.myHeight+',resizable=no,scrollbars=no'+
				',toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no');
	}else{//tell the user that no parameters have been passed.
		window.alert("No URL specified. - Cannot continue");
	}
}

function openNewWinScroll(url,w,h){
	myWidth = 800;
	myHeight = 600;
	if(url != null){//if url is supplied continue
		if(w != null){myWidth=w;}	//define w if it is not already defined
		if(h != null){myHeight=h;}	//define h if it is not already defined
		window.open(url,'_blank','width='+ this.myWidth +',height='+this.myHeight+',resizable=no,scrollbars=yes'+
				',toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no');
	}else{//tell the user that no parameters have been passed.
		window.alert("No URL specified. - Cannot continue");
	}
}

function openNewWinScrollPrint(url,w,h){
	myWidth = 800;
	myHeight = 600;
	if(url != null){//if url is supplied continue
		if(w != null){myWidth=w;}	//define w if it is not already defined
		if(h != null){myHeight=h;}	//define h if it is not already defined
		window.open(url,'_blank','width='+ this.myWidth +',height='+this.myHeight+',resizable=no,scrollbars=yes'+
				',toolbar=yes,location=no,directories=no,status=no,menubar=no,copyhistory=no');
	}else{//tell the user that no parameters have been passed.
		window.alert("No URL specified. - Cannot continue");
	}
}

function newWin(url,w,h){  
	myWidth = 800;
	myHeight = 600;
	if(url != null){//if url is supplied continue
		if(w != null){myWidth=w;}	//define w if it is not already defined
		if(h != null){myHeight=h;}	//define h if it is not already defined
		
		window.open(url,'_blank','width='+ this.myWidth +',height='+this.myHeight+',resizable=yes,scrollbars=yes'+
				',toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,copyhistory=yes');		 
	}else{//tell the user that no parameters have been passed.
		window.alert("No URL specified. - Cannot continue");
	}
}

