﻿function popup(url, settings){

	var settings;

	if (settings == undefined) settings = "width=120,height=300,scrollbars=NO";

	try{
		window.open(url, "popup", settings);
	}catch(e){
		alert("An error has occured while running the function 'popup()'");
	}
	
	settings = null;

}