﻿<!--


// 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,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,allowresize=no,left=0,top=0,toolbar=no,location=no,titlebar=no";
   popup = window.open(url,name,windowprops);
}


// -->


function openAdWin(url){
    var winpops=window.open(url,"","width=473,height=675,scrollbars")
}


function openProjectDetailWindow(url, name, w, h) {
 var windowprops = "width=" + w + ",height=" + h + ",scrollbars=yes,resizable=1,left=0,top=0,toolbar=no,location=no";
  popup = window.open(url,name,windowprops);
}