
<!-- Popup to display basic listing details -->
function showPopup_basic(url) { 
   newwindow=window.open(url,'name','height=300,width=650,top=200,left=300,resizable');
   if (window.focus) {newwindow.focus()} 
}

<!-- Popup to display weblink listing -->
function showPopup_weblist(url) { 
   newwindow=window.open(url,'name','height=175,width=500,top=200,left=300,scrollbars=yes,resizable'); 
   if (window.focus) {newwindow.focus()} 
}

<!-- Popup to display feature listing details -->
function showPopup_webfeat(url) { 
   newwindow=window.open(url,'name','height=625,width=450,top=25,left=300,scrollbars=yes'); 
   if (window.focus) {newwindow.focus()} 
}

<!-- Popup to display webfeature samplelisting -->
function showPopup_webfeature(url) { 
   newwindow=window.open(url,'name','height=500,width=500,top=200,left=300,scrollbars=yes,resizable'); 
   if (window.focus) {newwindow.focus()} 
}

<!-- Popup to display Sample Templates -->
function showPopup_sampTempl(url) { 
   newwindow=window.open(url,'name','height=800,width=800,top=25,left=300,scrollbars=yes,resizable'); 
   if (window.focus) {newwindow.focus()} 
}

<!-- Popup to display Hosting Plans -->
function showPopup_hostPlans(url) { 
   newwindow=window.open(url,'name','height=300,width=500,top=25,left=300,scrollbars=yes,resizable'); 
   if (window.focus) {newwindow.focus()} 
}

<!-- Popup to display State Maps -->
function showPopup_stateMaps(url) { 
   newwindow=window.open(url,'name','height=750,width=750,top=25,left=300,scrollbars=yes,resizable'); 
   if (window.focus) {newwindow.focus()} 
}

<!-- Popup to display Hosting Plans -->
function showPopup_webTerms(url) { 
   newwindow=window.open(url,'name','height=300,width=300,top=25,left=300,scrollbars=no,resizable'); 
   if (window.focus) {newwindow.focus()} 
}






