function drop(SelectLogin)
{
	var val=SelectLogin.options[SelectLogin.selectedIndex].value;
	var i = SelectLogin.selectedIndex;
//	alert(i + " sd")
	if (i ==1 )
	{
	    
	    if(val =="") 
	    { 
	    	window.open (val,"","scrollbars=no ,menubar=0,location=0,left=0,top=0,resizable=1,maximize=1");
	    }
	    else	    
	    {
	    	window.open (SelectLogin.options[1].value,"","width=" + screen.availWidth + ",height=" + screen.availHeight + ",resizable=1,status=1,location=1,scrollbars=1,maximize=1");
	    }
	    document.hplogin.where.selectedIndex=0;
	    return true;
	 }
	
	if (val !="")  
	  document.hplogin.where.selectedIndex=0;
	  window.open (val,"","");
}
function drop2(SelectLogin)
{
	var val=SelectLogin.options[SelectLogin.selectedIndex].value;
	if (val !="")  
	  document.hplogin.where.selectedIndex=0;
	  window.open (val,"","width=680,height=410,scrollbars=yes ,menubar=yes,location=yes,left=0,top=0,Resize=yes");
	  open(val);
}

document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0'><form name=hplogin><tr><td  align='center'>");
dropdown='';
dropdown=dropdown + '<select name="where" onChange="drop(this)">';
dropdown=dropdown + '<option value="" selected>Login to</option>';
dropdown=dropdown + '<option value="https://www.kotak.com/j1001mp/netapp/MainPage.jsp">Net Banking</option>';
dropdown=dropdown + '<option value="https://kstrade.kotaksecurities.com/">Securities Trading Account</option>';
dropdown=dropdown + '<option value="https://www.billdesk.com/kotak/kotakvmt.htm">Visa Money Transfer</option>';
dropdown=dropdown + '<option value="http://www.kotak.com/Kotak_BankSite/personal/convenience/listofshopping.htm">Online Shopping</option>';
dropdown=dropdown + '<option value="http://www.kotak.com/Kotak_BankSite/personal/offers_n_deals/default.htm">Special Offers</option>';


dropdown=dropdown + '</select>';
document.write(dropdown);
document.write("</td></tr></form></table>");