function open_window(theURL, pWidth, pHeight) { 

	features = "toolbar=no,status=no,menubar=no,resizable=no,scrollbars=yes,width=" + pWidth + ",height=" + pHeight;
	window.open(theURL,'pop_info', features);
}
