	function popBigWin(sendpage) {
		window.open(sendpage,"grmspop","toolbar=yes,resizable=yes,directories=yes,location=yes,status=yes,scrollbars=auto,menubar=yes");
	} 

	// Function to pop small window
	// popSmallWin(URL_to_open, "yes"/"no", "yes","no", window_width, window_height)
	function popSmallWin(url, resize, tools, width, height) {
		if(tools == "no"){
			var params = "toolbar=no,resizable="+resize+",directories=no,location=no,status=no,scrollbars=auto,menubar=no,width="+width+",height="+height;
		} else {
			var params = "toolbar=yes,resizable="+resize+",directories=no,location=yes,status=yes,scrollbars=auto,menubar=yes,width="+width+",height="+height;
		}
		window.open(url,"grmspop",params);
		grmspop.focus();
	} 
