

function openWin(fileName,width,height) {
	if(!(width)){
		width=350
	}
	
	if(!(height)){
		height=300
	}
	
	var newWin = window.open(fileName, "popUpWin", "width=" + width + ",height=" + height + ",scrollbars=1,resizable=1");	
}