// JavaScript Document

function sendme() 
{
var deptcode="";
deptcode=document.dpt.nd.value;
//window.location="not_repf.asp?deptcode=" + deptcode + ""
//window.location= deptcode
 

var is_protocol_ok=deptcode.indexOf('http://');
var is_dot_ok=deptcode.indexOf('.');
if ((is_protocol_ok==-1) || (is_dot_ok==-1))
 { 
  	//alert('Thanks!');
 	window.location=deptcode

 }
else
	window.open(deptcode);
}


//-----------------

document.write('<FORM onSubmit="" action=--WEBBOT-SELF-- method=POST style="margin: 0" name="dpt">\
				 <select name="nd" onchange="sendme()" class="selectbox">');
document.write('<option selected value="#">Other Important Links</option> \
															<option value="http://demo.mp.nic.in/cmims/">CM Monitoring System</option> \
															<option value="http://mpsamadhan.org/">MP Public Grievances System</option> \
										<option value="http://www.mponline.gov.in/portal/newindex.aspx?langid=en-us">MP OnLine</option> \
														<option value="http://demo.mp.nic.in/samadhanonline/">Samadhan Online</option> \
															</select> </Form> ');




