GATE 2009 Question Papers With Solutions All Branches
function linker(mySel)
{
var myWin, myVal;
myVal = mySel.options[mySel.selectedIndex].value;
if(myVal)
{
myWin = window;
myWin.open(myVal);
}
mySel.selectedIndex=0;
return ...
