

function centerpopup(Scroll,section){
 var obj = document.form1.selectNoOfPeople.options[document.form1.selectNoOfPeople.selectedIndex];
if (document.all) { 
   w = screen.availWidth;
   h = screen.availHeight;
}
else if (document.layers) {
   w = screen.availWidth;
   h = screen.availHeight;
}

var popW = 770, popH = 300;
var leftPos = (w-popW)/2, topPos = (h-popH)/2;
var url;


if(obj.value!='Title')
{

	if(obj.value=="1s" && section=="s"){
	url="Sdt_Lead_1.html";
		}

	if(obj.value=="2s" && section=="s"){
	url="Sdt_Lead_2.html";
		}
		
	if(obj.value=="3s" && section=="s"){
	url="Sdt_Lead_3.html";
		}

	if(obj.value=="4s" && section=="s"){
	url="Sdt_Lead_4.html";
		}

	if(obj.value=="1s" && section=="q"){
	url="Quick_Ship_1.html";
		}
		
	if(obj.value=="2s" && section=="q"){
	url="Quick_Ship_2.html";
		}

	if(obj.value=="3s" && section=="q"){
	url="Quick_Ship_3.html";
		}

	if(obj.value=="4s" && section=="q"){
	url="Quick_Ship_4.html";
		}
	

window.open(url,name,'scrollbars='+ Scroll +',width=' + popW + ',height='+popH+',top='+topPos+',left='+leftPos + 'menubar=no; location=no; toolbar=no');
}
else alert("Please select the number of people");

}


function centerpopup2(URL,popwidth,popHeight,Scroll){
 
if (document.all) { 
   w = screen.availWidth;
   h = screen.availHeight;
	}
else if (document.layers) {
   w = screen.availWidth;
   h = screen.availHeight;
	}

var popW = popwidth; 
var popH = popHeight;
var leftPos = (w-popW)/2, topPos = (h-popH)/2;



window.open(URL,name,'scrollbars='+ Scroll +',width=' + popW + ',height='+popH+',top='+topPos+',left='+leftPos + 'menubar=no; location=no; toolbar=no');
}


