﻿// Pop-Up Embedder Script by David Battino, www.batmosphere.com
// Version 2006-05-31  
// OK to use if this notice is included
   
function openURL(titel,url) {

var win = null;
  w=700;
  h=600;
  LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  settings = 'width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',resizable=1,scrollbars=1,titlebar=0,toolbar=0,menubar=0,status=0,directories=0';
  window.open(url,titel,settings);

}
