// JavaScript Document

function open_window(url, name, width, height, params){
	//open window centred on screen
	var yCentre = (screen.availHeight / 2) - (height / 2);
	var xCentre = (screen.availWidth / 2) - (width / 2);
	if (!params) params = "resizable=no, scrollbars=yes";
  var options = "width=" + width + ",height=" + height + ", top=" + yCentre + ", left=" + xCentre + ", " + params;
	
	var win = window.open(url, name, options);
	win.focus();

	return win
}

function openInspiration() {
  window.open('http://www.dsldevelopments.com/sms-shipment-alerts.htm','','toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=yes,width=720,height=655');
}
