/*
	Common javascript functions would go in 'ere bub.
*/

// window popup function
function popup(url, width, height) {
	features = "height=" + height + ",width=" + width + ",directories=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0";
	open(url, "_blank", features);
}
