﻿<!--


// OPEN NEW WINDOW FUNCTION

function openWindow(url, name, w, h) {
 var windowprops = "width=" + w + ",height=" + h + ",scrollbars=no,noresize,left=0,top=0,toolbar=no,location=no";
  popup = window.open(url,name,windowprops);
  }
		
	
// OPEN NEW WINDOW FUNCTION (with scrollbars)

function openWindowWithScroll(url, name, w, h) {
 var windowprops = "width=" + w + ",height=" + h + ",scrollbars=yes,allowresize=yes,left=0,top=0,toolbar=yes,location=yes";
  popup = window.open(url,name,windowprops);
  }

// OPEN NEW WINDOW FUNCTION (with scrollbars but no toolbar/menubar etc)

function bareWindowWithScroll(url, name, w, h, title) 
{
   var windowprops = "width=" + w + ",height=" + h + ",scrollbars=yes,left=100,top=100,toolbar=no,location=no,resizable=yes";
   popup = window.open(url,name,windowprops);
}


// -->


function openAdWin(url){
    var winpops=window.open(url,"","width=473,height=500,scrollbars")
}








