// SiteScript.cfm for linked sites 


var newSite = null

function makeNewSite(template,width,height) {

if (newSite != null)  newSite.close();

newSite = window.open(template,'Another','toolbar,location,status,resizable,scrollbars,width=' + width + ',height=' + height + ',top=1,left=1');

newSite.focus();
}
