function newWin(winurl, winwidth, winheight, scroller) {

	if(!(winwidth)){
		width=375
	}
	
	if(!(winheight)){
		height=350
	}
	
	if(!(scroller)){
		scroller = 0;
	}

	var newWindow = window.open(winurl, "newWindow", "width=" + winwidth + ",height=" + winheight + ",scrollbars=" + scroller + ",resizable=1,status=0");
}
