var pageFun = {
	openWin : function (URL, w, h) {
		width = 800;
		height = 600;
		if (w != null) width  = w;
		if (h != null) height = h;
		window.open(URL,'new','width=' + width + ',height=' + height + ',toolbar=yes,scrollbars=yes');
	}
	
};