// Global JS functions
function popup(url,width,height) {
	var win = window.open(url,"popup","width=" + width + ",height=" + height + ",resizable,scrollbars");	
}
