<!DOCTYPE html>
<!-- saved from url=(0031)http://securecamp.co/notebooks/ -->
<html class="gr__securecamp_co"><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>STUDENTSNOTEBOOKS</title>
<meta charset="utf-"8"">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="/notebook/css
/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="/notebook/css
/main.css" rel="stylesheet" type="text/css">
<link href="/notebook/css
/font-awesome.css" rel="stylesheet" type="text/css">
<link href="/notebook
/css
/font-awesome.min.css" rel="stylesheet" type="text/css">
<script src="/notebook/js
/jquery-1.8.1.min.js" async="" type="text/javascript"></script>
<script src="/notebook/js
/jquery-1.11.0.js"></script>
<script src="/notebook/js
/bootstrap.min.js"></script>
<script type="text/javascript">
function get_notebooks()
{
var cntryId=document.notebook_srch_frm.countryId.value;
var state_id=document.notebook_srch_frm.stateId.value;
var city_id=document.notebook_srch_frm.cityId.value;
var cate_id=document.notebook_srch_frm.categoryId.value;
var strm_id=document.notebook_srch_frm.strmId.value;
var inst_id=document.notebook_srch_frm.instId.value;
var subject_id="";
var chapter_id="";
var strm_arr = document.getElementsByName("insubId[]");
var strmArrlength = strm_arr.length;
for(var k=0;k< strmArrlength;k++)
{
if(strm_arr[k].checked ==true)
{
if(subject_id!="")
{
subject_id+=",";
}
subject_id+=strm_arr[k].value;
}
}
var chptr_arr = document.getElementsByName("chaptorsId[]");
var chptrArrlength = chptr_arr.length;
if(chptr_arr[0].checked==true)
{
chapter_id="all";
}
else
{
for(var c=0;c< chptrArrlength;c++)
{
if(c!=0 && chptr_arr[c].checked ==true)
{
if(chptr_arr[c].checked ==true)
{
if(chapter_id!="")
{
chapter_id+=",";
}
chapter_id+=chptr_arr[c].value;
}
}
}
}
var parmtr="cntry="+cntryId+"&state="+state_id+"&city="+city_id+"&cate="+cate_id+"&strm="+strm_id+"&inst="+inst_id+"&subjct="+subject_id+"&chptrs="+chapter_id;
//alert(parmtr);
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (xhttp.readyState == 4 && xhttp.status == 200) {
document.getElementById("actData_div").innerHTML = xhttp.responseText;
}
};
xhttp.open("GET", "http://securecamp.co/notebooks/getActData.php?"+parmtr, true);
xhttp.send();
}
function check_all_chapters()
{
var chptr_arr = document.getElementsByName("chaptorsId[]");
var chptrArrlength = chptr_arr.length;
if(chptr_arr[0].checked==true)
{
for(var c=1;c< chptrArrlength;c++)
{
chptr_arr[c].checked =true;
}
}
}
function get_state(cntId)
{
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (xhttp.readyState == 4 && xhttp.status == 200) {
document.getElementById("stateDiv").innerHTML = xhttp.responseText;
}
};
xhttp.open("GET", "http://securecamp.co/notebooks/getState.php?cnt="+cntId, true);
xhttp.send();
}
function get_city(stId)
{
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (xhttp.readyState == 4 && xhttp.status == 200) {
document.getElementById("cityDiv").innerHTML = xhttp.responseText;
}
};
xhttp.open("GET", "http://securecamp.co/notebooks/getCity.php?st="+stId, true);
xhttp.send();
}
function getStream(catId)
{
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (xhttp.readyState == 4 && xhttp.status == 200) {
document.getElementById("strmDiv").innerHTML = xhttp.responseText;
}
};
xhttp.open("GET", "http://securecamp.co/notebooks/getStrem.php?cat="+catId, true);
xhttp.send();
}
function get_inst(stream_id)
{
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (xhttp.readyState == 4 && xhttp.status == 200) {
document.getElementById("instDiv").innerHTML = xhttp.responseText;
}
};
xhttp.open("GET", "http://securecamp.co/notebooks/get_inst.php?strm="+stream_id, true);
xhttp.send();
}
function get_sub(stream_id)
{
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (xhttp.readyState == 4 && xhttp.status == 200) {
document.getElementById("subDiv").innerHTML = xhttp.responseText;
}
};
xhttp.open("GET", "http://securecamp.co/notebooks/get_sub.php?strm="+stream_id, true);
xhttp.send();
}
function get_chapters(subIds)
{
var subject_id="";
var strm_arr = document.getElementsByName("insubId[]");
var strmArrlength = strm_arr.length;
for(var k=0;k< strmArrlength;k++)
{
if(strm_arr[k].checked ==true)
{
if(subject_id!="")
{
subject_id+=",";
}
subject_id+=strm_arr[k].value;
}
}
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (xhttp.readyState == 4 && xhttp.status == 200) {
document.getElementById("chaptorDiv").innerHTML = xhttp.responseText;
}
};
xhttp.open("GET", "http://securecamp.co/notebooks/get_cpters.php?sub="+subject_id, true);
xhttp.send();
}
/*function moredata()
{
var ID = $(this).attr('id');
alert(ID);
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (xhttp.readyState == 4 && xhttp.status == 200) {
document.getElementById("actData_div").innerHTML = xhttp.responseText;
}
};
xhttp.open("GET", "http://securecamp.co/notebooks/get_moredata.php", true);
xhttp.send();
}*/
$(document).ready(function(){
$(document).on('click','.show_more',function(){
var ID = $(this).attr('id');
var rateval=$("#rateval").val();
var srch_box=$("#srch_box").val();
var cntryId=document.notebook_srch_frm.countryId.value;
var state_id=document.notebook_srch_frm.stateId.value;
var city_id=document.notebook_srch_frm.cityId.value;
var cate_id=document.notebook_srch_frm.categoryId.value;
var strm_id=document.notebook_srch_frm.strmId.value;
var inst_id=document.notebook_srch_frm.instId.value;
var subject_id="";
var chapter_id="";
var strm_arr = document.getElementsByName("insubId[]");
var strmArrlength = strm_arr.length;
for(var k=0;k< strmArrlength;k++)
{
if(strm_arr[k].checked ==true)
{
if(subject_id!="")
{
subject_id+=",";
}
subject_id+=strm_arr[k].value;
}
}
var chptr_arr = document.getElementsByName("chaptorsId[]");
var chptrArrlength = chptr_arr.length;
if(chptr_arr[0].checked==true)
{
chapter_id="all";
}
else
{
for(var c=0;c< chptrArrlength;c++)
{
if(c!=0 && chptr_arr[c].checked ==true)
{
if(chptr_arr[c].checked ==true)
{
if(chapter_id!="")
{
chapter_id+=",";
}
chapter_id+=chptr_arr[c].value;
}
}
}
}
// var parmtr="cntry="+cntryId+"&state="+state_id+"&city="+city_id+"&cate="+cate_id+"&strm="+strm_id+"&inst="+inst_id+"&subjct="+subject_id+"&chptrs="+chapter_id;
$.ajax({
type:'POST',
url:'get_moredata.php',
data:{
id: ID,
rate: rateval,
cntry:cntryId,
state:state_id,
city:city_id,
cate:cate_id,
strm:strm_id,
inst:inst_id,
subjct:subject_id,
chptrs:chapter_id,
srch_box_name:srch_box,
},
success:function(html){
$('#show_more_main'+ID).remove();
$('#actData_div').append(html);
}
});
});
});
</script>
</head>
<body data-gr-c-s-loaded="true" data-pinterest-extension-installed="cr1.39.1">
<section class="navigation">
<div class="container-fluid">
<div class="row">
<nav>
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="http://securecamp.co/notebooks/"><p class="logo"><img src="./STUDENTSNOTEBOOKS1_files/logo2.png" class="img-responsive"></p></a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a href="/notebook/login.php">Log In </a></li>
<li><a href="/notebook/registration.php">Sign Up</a></li>
<li><button onclick="window.location.href='/notebook/submitter_registration.php'" type="button" class="btn btn-info submit-btn">Submit your Notebook</button></li>
</ul>
</div>
</nav>
</div>
</div>
</section> <section class="category">
<div class=" container-fluid">
<div class="row">
<div class="col-md-3 right-bx">
<form name="notebook_srch_frm" id="notebook_srch_frm" method="POST">
<div class="option">
<p class="option-text">Country</p>
<div class="option-box">
<ul id="countryDiv">
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="100" id="countryId" name="countryId"> India</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="2" id="countryId" name="countryId"> Afghanistan</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="5" id="countryId" name="countryId"> Albania</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="62" id="countryId" name="countryId"> Algeria</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="11" id="countryId" name="countryId"> American Samoa</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="6" id="countryId" name="countryId"> Andorra</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="3" id="countryId" name="countryId"> Angola</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="4" id="countryId" name="countryId"> Anguilla</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="12" id="countryId" name="countryId"> Antarctica</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="14" id="countryId" name="countryId"> Antigua and Barbuda</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="9" id="countryId" name="countryId"> Argentina</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="10" id="countryId" name="countryId"> Armenia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="1" id="countryId" name="countryId"> Aruba</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="15" id="countryId" name="countryId"> Australia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="16" id="countryId" name="countryId"> Austria</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="17" id="countryId" name="countryId"> Azerbaijan</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="25" id="countryId" name="countryId"> Bahamas</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="24" id="countryId" name="countryId"> Bahrain</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="22" id="countryId" name="countryId"> Bangladesh</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="32" id="countryId" name="countryId"> Barbados</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="27" id="countryId" name="countryId"> Belarus</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="19" id="countryId" name="countryId"> Belgium</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="28" id="countryId" name="countryId"> Belize</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="20" id="countryId" name="countryId"> Benin</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="29" id="countryId" name="countryId"> Bermuda</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="34" id="countryId" name="countryId"> Bhutan</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="30" id="countryId" name="countryId"> Bolivia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="26" id="countryId" name="countryId"> Bosnia and Herzegovina</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="36" id="countryId" name="countryId"> Botswana</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="35" id="countryId" name="countryId"> Bouvet Island</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="31" id="countryId" name="countryId"> Brazil</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="101" id="countryId" name="countryId"> British Indian Ocean Territory</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="33" id="countryId" name="countryId"> Brunei</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="23" id="countryId" name="countryId"> Bulgaria</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="21" id="countryId" name="countryId"> Burkina Faso</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="18" id="countryId" name="countryId"> Burundi</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="114" id="countryId" name="countryId"> Cambodia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="44" id="countryId" name="countryId"> Cameroon</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="38" id="countryId" name="countryId"> Canada</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="50" id="countryId" name="countryId"> Cape Verde</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="54" id="countryId" name="countryId"> Cayman Islands</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="43" id="countryId" name="countryId"> Côte d’Ivoire</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="37" id="countryId" name="countryId"> Central African Republic</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="206" id="countryId" name="countryId"> Chad</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="41" id="countryId" name="countryId"> Chile</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="42" id="countryId" name="countryId"> China</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="53" id="countryId" name="countryId"> Christmas Island</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="39" id="countryId" name="countryId"> Cocos (Keeling) Islands</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="48" id="countryId" name="countryId"> Colombia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="49" id="countryId" name="countryId"> Comoros</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="46" id="countryId" name="countryId"> Congo</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="45" id="countryId" name="countryId"> Congo, The Democratic Republic</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="47" id="countryId" name="countryId"> Cook Islands</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="51" id="countryId" name="countryId"> Costa Rica</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="96" id="countryId" name="countryId"> Croatia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="52" id="countryId" name="countryId"> Cuba</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="55" id="countryId" name="countryId"> Cyprus</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="56" id="countryId" name="countryId"> Czech Republic</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="60" id="countryId" name="countryId"> Denmark</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="58" id="countryId" name="countryId"> Djibouti</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="59" id="countryId" name="countryId"> Dominica</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="61" id="countryId" name="countryId"> Dominican Republic</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="212" id="countryId" name="countryId"> East Timor</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="63" id="countryId" name="countryId"> Ecuador</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="64" id="countryId" name="countryId"> Egypt</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="193" id="countryId" name="countryId"> El Salvador</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="85" id="countryId" name="countryId"> Equatorial Guinea</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="65" id="countryId" name="countryId"> Eritrea</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="68" id="countryId" name="countryId"> Estonia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="69" id="countryId" name="countryId"> Ethiopia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="72" id="countryId" name="countryId"> Falkland Islands</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="74" id="countryId" name="countryId"> Faroe Islands</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="71" id="countryId" name="countryId"> Fiji Islands</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="70" id="countryId" name="countryId"> Finland</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="73" id="countryId" name="countryId"> France</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="90" id="countryId" name="countryId"> French Guiana</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="178" id="countryId" name="countryId"> French Polynesia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="13" id="countryId" name="countryId"> French Southern territories</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="76" id="countryId" name="countryId"> Gabon</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="83" id="countryId" name="countryId"> Gambia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="78" id="countryId" name="countryId"> Georgia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="57" id="countryId" name="countryId"> Germany</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="79" id="countryId" name="countryId"> Ghana</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="80" id="countryId" name="countryId"> Gibraltar</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="86" id="countryId" name="countryId"> Greece</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="88" id="countryId" name="countryId"> Greenland</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="87" id="countryId" name="countryId"> Grenada</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="82" id="countryId" name="countryId"> Guadeloupe</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="91" id="countryId" name="countryId"> Guam</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="89" id="countryId" name="countryId"> Guatemala</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="81" id="countryId" name="countryId"> Guinea</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="84" id="countryId" name="countryId"> Guinea-Bissau</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="92" id="countryId" name="countryId"> Guyana</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="97" id="countryId" name="countryId"> Haiti</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="94" id="countryId" name="countryId"> Heard Island and McDonald Isla</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="226" id="countryId" name="countryId"> Holy See (Vatican City State)</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="95" id="countryId" name="countryId"> Honduras</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="93" id="countryId" name="countryId"> Hong Kong</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="98" id="countryId" name="countryId"> Hungary</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="105" id="countryId" name="countryId"> Iceland</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="99" id="countryId" name="countryId"> Indonesia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="103" id="countryId" name="countryId"> Iran</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="104" id="countryId" name="countryId"> Iraq</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="102" id="countryId" name="countryId"> Ireland</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="106" id="countryId" name="countryId"> Israel</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="107" id="countryId" name="countryId"> Italy</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="108" id="countryId" name="countryId"> Jamaica</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="110" id="countryId" name="countryId"> Japan</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="109" id="countryId" name="countryId"> Jordan</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="111" id="countryId" name="countryId"> Kazakstan</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="112" id="countryId" name="countryId"> Kenya</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="115" id="countryId" name="countryId"> Kiribati</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="118" id="countryId" name="countryId"> Kuwait</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="113" id="countryId" name="countryId"> Kyrgyzstan</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="119" id="countryId" name="countryId"> Laos</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="129" id="countryId" name="countryId"> Latvia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="120" id="countryId" name="countryId"> Lebanon</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="126" id="countryId" name="countryId"> Lesotho</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="121" id="countryId" name="countryId"> Liberia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="122" id="countryId" name="countryId"> Libyan Arab Jamahiriya</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="124" id="countryId" name="countryId"> Liechtenstein</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="127" id="countryId" name="countryId"> Lithuania</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="128" id="countryId" name="countryId"> Luxembourg</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="130" id="countryId" name="countryId"> Macao</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="138" id="countryId" name="countryId"> Macedonia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="134" id="countryId" name="countryId"> Madagascar</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="149" id="countryId" name="countryId"> Malawi</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="150" id="countryId" name="countryId"> Malaysia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="135" id="countryId" name="countryId"> Maldives</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="139" id="countryId" name="countryId"> Mali</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="140" id="countryId" name="countryId"> Malta</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="137" id="countryId" name="countryId"> Marshall Islands</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="147" id="countryId" name="countryId"> Martinique</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="145" id="countryId" name="countryId"> Mauritania</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="148" id="countryId" name="countryId"> Mauritius</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="151" id="countryId" name="countryId"> Mayotte</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="136" id="countryId" name="countryId"> Mexico</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="75" id="countryId" name="countryId"> Micronesia, Federated States o</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="133" id="countryId" name="countryId"> Moldova</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="132" id="countryId" name="countryId"> Monaco</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="142" id="countryId" name="countryId"> Mongolia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="146" id="countryId" name="countryId"> Montserrat</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="131" id="countryId" name="countryId"> Morocco</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="144" id="countryId" name="countryId"> Mozambique</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="141" id="countryId" name="countryId"> Myanmar</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="152" id="countryId" name="countryId"> Namibia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="162" id="countryId" name="countryId"> Nauru</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="161" id="countryId" name="countryId"> Nepal</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="159" id="countryId" name="countryId"> Netherlands</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="7" id="countryId" name="countryId"> Netherlands Antilles</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="153" id="countryId" name="countryId"> New Caledonia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="163" id="countryId" name="countryId"> New Zealand</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="157" id="countryId" name="countryId"> Nicaragua</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="154" id="countryId" name="countryId"> Niger</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="156" id="countryId" name="countryId"> Nigeria</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="158" id="countryId" name="countryId"> Niue</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="155" id="countryId" name="countryId"> Norfolk Island</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="174" id="countryId" name="countryId"> North Korea</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="143" id="countryId" name="countryId"> Northern Mariana Islands</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="160" id="countryId" name="countryId"> Norway</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="164" id="countryId" name="countryId"> Oman</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="165" id="countryId" name="countryId"> Pakistan</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="170" id="countryId" name="countryId"> Palau</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="177" id="countryId" name="countryId"> Palestine</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="166" id="countryId" name="countryId"> Panama</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="171" id="countryId" name="countryId"> Papua New Guinea</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="176" id="countryId" name="countryId"> Paraguay</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="168" id="countryId" name="countryId"> Peru</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="169" id="countryId" name="countryId"> Philippines</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="167" id="countryId" name="countryId"> Pitcairn</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="172" id="countryId" name="countryId"> Poland</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="175" id="countryId" name="countryId"> Portugal</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="173" id="countryId" name="countryId"> Puerto Rico</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="179" id="countryId" name="countryId"> Qatar</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="180" id="countryId" name="countryId"> Réunion</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="181" id="countryId" name="countryId"> Romania</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="182" id="countryId" name="countryId"> Russian Federation</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="183" id="countryId" name="countryId"> Rwanda</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="189" id="countryId" name="countryId"> Saint Helena</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="116" id="countryId" name="countryId"> Saint Kitts and Nevis</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="123" id="countryId" name="countryId"> Saint Lucia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="196" id="countryId" name="countryId"> Saint Pierre and Miquelon</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="227" id="countryId" name="countryId"> Saint Vincent and the Grenadin</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="234" id="countryId" name="countryId"> Samoa</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="194" id="countryId" name="countryId"> San Marino</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="197" id="countryId" name="countryId"> Sao Tome and Principe</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="184" id="countryId" name="countryId"> Saudi Arabia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="186" id="countryId" name="countryId"> Senegal</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="203" id="countryId" name="countryId"> Seychelles</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="192" id="countryId" name="countryId"> Sierra Leone</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="187" id="countryId" name="countryId"> Singapore</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="199" id="countryId" name="countryId"> Slovakia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="200" id="countryId" name="countryId"> Slovenia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="191" id="countryId" name="countryId"> Solomon Islands</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="195" id="countryId" name="countryId"> Somalia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="237" id="countryId" name="countryId"> South Africa</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="188" id="countryId" name="countryId"> South Georgia and the South Sa</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="117" id="countryId" name="countryId"> South Korea</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="67" id="countryId" name="countryId"> Spain</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="125" id="countryId" name="countryId"> Sri Lanka</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="185" id="countryId" name="countryId"> Sudan</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="198" id="countryId" name="countryId"> Suriname</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="190" id="countryId" name="countryId"> Svalbard and Jan Mayen</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="202" id="countryId" name="countryId"> Swaziland</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="201" id="countryId" name="countryId"> Sweden</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="40" id="countryId" name="countryId"> Switzerland</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="204" id="countryId" name="countryId"> Syria</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="218" id="countryId" name="countryId"> Taiwan</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="209" id="countryId" name="countryId"> Tajikistan</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="219" id="countryId" name="countryId"> Tanzania</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="208" id="countryId" name="countryId"> Thailand</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="207" id="countryId" name="countryId"> Togo</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="210" id="countryId" name="countryId"> Tokelau</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="213" id="countryId" name="countryId"> Tonga</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="214" id="countryId" name="countryId"> Trinidad and Tobago</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="215" id="countryId" name="countryId"> Tunisia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="216" id="countryId" name="countryId"> Turkey</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="211" id="countryId" name="countryId"> Turkmenistan</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="205" id="countryId" name="countryId"> Turks and Caicos Islands</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="217" id="countryId" name="countryId"> Tuvalu</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="220" id="countryId" name="countryId"> Uganda</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="221" id="countryId" name="countryId"> Ukraine</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="8" id="countryId" name="countryId"> United Arab Emirates</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="77" id="countryId" name="countryId"> United Kingdom</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="224" id="countryId" name="countryId"> United States</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="222" id="countryId" name="countryId"> United States Minor Outlying I</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="223" id="countryId" name="countryId"> Uruguay</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="225" id="countryId" name="countryId"> Uzbekistan</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="232" id="countryId" name="countryId"> Vanuatu</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="228" id="countryId" name="countryId"> Venezuela</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="231" id="countryId" name="countryId"> Vietnam</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="229" id="countryId" name="countryId"> Virgin Islands, British</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="230" id="countryId" name="countryId"> Virgin Islands, U.S.</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="233" id="countryId" name="countryId"> Wallis and Futuna</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="66" id="countryId" name="countryId"> Western Sahara</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="235" id="countryId" name="countryId"> Yemen</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="236" id="countryId" name="countryId"> Yugoslavia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="238" id="countryId" name="countryId"> Zambia</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_state(this.value),get_notebooks()" value="239" id="countryId" name="countryId"> Zimbabwe</label> </div>
</li>
</ul>
</div>
</div>
<div class="option">
<p class="option-text">State</p>
<div class="option-box">
<ul id="stateDiv">
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="755" id="stateId" name="stateId"> Uttar Pradesh</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="732" id="stateId" name="stateId"> Andhra Pradesh</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="733" id="stateId" name="stateId"> Assam</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="734" id="stateId" name="stateId"> Bihar</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="735" id="stateId" name="stateId"> Chandigarh</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="736" id="stateId" name="stateId"> Chhatisgarh</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="737" id="stateId" name="stateId"> Delhi</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="738" id="stateId" name="stateId"> Gujarat</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="739" id="stateId" name="stateId"> Haryana</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="740" id="stateId" name="stateId"> Jammu and Kashmir</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="741" id="stateId" name="stateId"> Jharkhand</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="742" id="stateId" name="stateId"> Karnataka</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="743" id="stateId" name="stateId"> Kerala</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="744" id="stateId" name="stateId"> Madhya Pradesh</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="745" id="stateId" name="stateId"> Maharashtra</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="746" id="stateId" name="stateId"> Manipur</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="747" id="stateId" name="stateId"> Meghalaya</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="748" id="stateId" name="stateId"> Mizoram</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="749" id="stateId" name="stateId"> Orissa</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="750" id="stateId" name="stateId"> Pondicherry</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="751" id="stateId" name="stateId"> Punjab</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="752" id="stateId" name="stateId"> Rajasthan</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="753" id="stateId" name="stateId"> Tamil Nadu</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="754" id="stateId" name="stateId"> Tripura</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="756" id="stateId" name="stateId"> Uttaranchal</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_city(this.value),get_notebooks()" value="757" id="stateId" name="stateId"> West Bengali</label> </div>
</li>
</ul>
</div>
</div>
<div class="option">
<p class="option-text">City</p>
<div class="option-box">
<ul id="cityDiv">
<li>
<div class="radio"> <label>
<input type="radio" value="3625" onchange="get_notebooks()" id="cityId" name="cityId"> Agra</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3630" onchange="get_notebooks()" id="cityId" name="cityId"> Aligarh</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3626" onchange="get_notebooks()" id="cityId" name="cityId"> Allahabad</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3645" onchange="get_notebooks()" id="cityId" name="cityId"> Amroha</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3648" onchange="get_notebooks()" id="cityId" name="cityId"> Bahraich</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3662" onchange="get_notebooks()" id="cityId" name="cityId"> Banda</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3628" onchange="get_notebooks()" id="cityId" name="cityId"> Bareilly</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3655" onchange="get_notebooks()" id="cityId" name="cityId"> Budaun</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3650" onchange="get_notebooks()" id="cityId" name="cityId"> Bulandshahr</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3652" onchange="get_notebooks()" id="cityId" name="cityId"> Etawah</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3651" onchange="get_notebooks()" id="cityId" name="cityId"> Faizabad</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3640" onchange="get_notebooks()" id="cityId" name="cityId"> Farrukhabad-cum-Fatehgarh</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3654" onchange="get_notebooks()" id="cityId" name="cityId"> Fatehpur</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3639" onchange="get_notebooks()" id="cityId" name="cityId"> Firozabad</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3631" onchange="get_notebooks()" id="cityId" name="cityId"> Ghaziabad</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3659" onchange="get_notebooks()" id="cityId" name="cityId"> Gonda</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3629" onchange="get_notebooks()" id="cityId" name="cityId"> Gorakhpur</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3644" onchange="get_notebooks()" id="cityId" name="cityId"> Hapur</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3656" onchange="get_notebooks()" id="cityId" name="cityId"> Hathras</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3647" onchange="get_notebooks()" id="cityId" name="cityId"> Jaunpur</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3634" onchange="get_notebooks()" id="cityId" name="cityId"> Jhansi</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3622" onchange="get_notebooks()" id="cityId" name="cityId"> Kanpur</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3664" onchange="get_notebooks()" id="cityId" name="cityId"> Kanpur Cantonment</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3623" onchange="get_notebooks()" id="cityId" name="cityId"> Lucknow</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3638" onchange="get_notebooks()" id="cityId" name="cityId"> Mathura</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3646" onchange="get_notebooks()" id="cityId" name="cityId"> Maunath Bhanjan</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3627" onchange="get_notebooks()" id="cityId" name="cityId"> Meerut</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3663" onchange="get_notebooks()" id="cityId" name="cityId"> Meerut Cantonment</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3641" onchange="get_notebooks()" id="cityId" name="cityId"> Mirzapur-cum-Vindhyachal</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3660" onchange="get_notebooks()" id="cityId" name="cityId"> Modinagar</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3632" onchange="get_notebooks()" id="cityId" name="cityId"> Moradabad</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3636" onchange="get_notebooks()" id="cityId" name="cityId"> Muzaffarnagar</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3643" onchange="get_notebooks()" id="cityId" name="cityId"> Noida</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3661" onchange="get_notebooks()" id="cityId" name="cityId"> Orai</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3658" onchange="get_notebooks()" id="cityId" name="cityId"> Pilibhit</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3649" onchange="get_notebooks()" id="cityId" name="cityId"> Rae Bareli</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3635" onchange="get_notebooks()" id="cityId" name="cityId"> Rampur</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3633" onchange="get_notebooks()" id="cityId" name="cityId"> Saharanpur</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3642" onchange="get_notebooks()" id="cityId" name="cityId"> Sambhal</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3637" onchange="get_notebooks()" id="cityId" name="cityId"> Shahjahanpur</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3653" onchange="get_notebooks()" id="cityId" name="cityId"> Sitapur</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3657" onchange="get_notebooks()" id="cityId" name="cityId"> Unnao</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" value="3624" onchange="get_notebooks()" id="cityId" name="cityId"> Varanasi (Benares)</label> </div>
</li>
</ul>
</div>
</div>
<div class="option">
<p class="option-text">Category</p>
<div class="option-box">
<ul id="catDiv">
<li>
<div class="radio"> <label>
<input type="radio" onchange="getStream(this.value),get_notebooks()" value="3" id="categoryId" name="categoryId"> coaching</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="getStream(this.value),get_notebooks()" value="1" id="categoryId" name="categoryId"> College</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="getStream(this.value),get_notebooks()" value="2" id="categoryId" name="categoryId"> engg coll</label> </div>
</li>
</ul>
</div>
</div>
<div class="option">
<p class="option-text">Streams</p>
<div class="option-box">
<ul id="strmDiv">
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_inst(this.value),get_sub(this.value),get_notebooks()" value="2" id="strmId" name="strmId"> btech</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_inst(this.value),get_sub(this.value),get_notebooks()" value="1" id="strmId" name="strmId"> Engineering</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_inst(this.value),get_sub(this.value),get_notebooks()" value="3" id="strmId" name="strmId"> engineering</label> </div>
</li>
</ul>
</div>
</div>
<div class="option">
<p class="option-text">COACHING / COLLEGE / SCHOOL</p>
<div class="option-box">
<ul id="instDiv">
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_sub(this.value),get_notebooks()" value="1" id="instId" name="instId"> A.N. Institute of Engineering</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_sub(this.value),get_notebooks()" value="4" id="instId" name="instId"> gic</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_sub(this.value),get_notebooks()" value="2" id="instId" name="instId"> hbti</label> </div>
</li>
<li>
<div class="radio"> <label>
<input type="radio" onchange="get_sub(this.value),get_notebooks()" value="3" id="instId" name="instId"> mpec</label> </div>
</li>
</ul>
</div>
</div>
<div class="option">
<p class="option-text">Subjects</p>
<div class="option-box">
<ul id="subDiv">
<li>
<div class="checkbox"> <label>
<input type="checkbox" onchange="get_chapters(this.value),get_notebooks()" value="3" id="insubId" name="insubId[]"> basic electronics</label> </div>
</li>
<li>
<div class="checkbox"> <label>
<input type="checkbox" onchange="get_chapters(this.value),get_notebooks()" value="5" id="insubId" name="insubId[]"> chemistry</label> </div>
</li>
<li>
<div class="checkbox"> <label>
<input type="checkbox" onchange="get_chapters(this.value),get_notebooks()" value="2" id="insubId" name="insubId[]"> cs</label> </div>
</li>
<li>
<div class="checkbox"> <label>
<input type="checkbox" onchange="get_chapters(this.value),get_notebooks()" value="4" id="insubId" name="insubId[]"> mathematics</label> </div>
</li>
<li>
<div class="checkbox"> <label>
<input type="checkbox" onchange="get_chapters(this.value),get_notebooks()" value="1" id="insubId" name="insubId[]"> Physics</label> </div>
</li>
</ul>
</div>
</div>
<div class="option">
<p class="option-text">Chapters</p>
<div class="option-box">
<ul id="chaptorDiv">
<li>
<div class="checkbox"> <label>
<input type="checkbox" onchange="get_notebooks(),check_all_chapters()" value="all" id="chaptorsId" name="chaptorsId[]"> All Topics</label> </div>
</li>
<li>
<div class="checkbox"> <label>
<input type="checkbox" onchange="get_notebooks()" value="15" id="chaptorsId" name="chaptorsId[]"> HYDROCARBENS IN ORGANIC CHEMISTRYy</label> </div>
</li>
<li>
<div class="checkbox"> <label>
<input type="checkbox" onchange="get_notebooks()" value="14" id="chaptorsId" name="chaptorsId[]"> HYDROCARBENS IN ORGANIC CHEMISTRY</label> </div>
</li>
<li>
<div class="checkbox"> <label>
<input type="checkbox" onchange="get_notebooks()" value="13" id="chaptorsId" name="chaptorsId[]"> chemistry</label> </div>
</li>
<li>
<div class="checkbox"> <label>
<input type="checkbox" onchange="get_notebooks()" value="12" id="chaptorsId" name="chaptorsId[]"> matrix</label> </div>
</li>
<li>
<div class="checkbox"> <label>
<input type="checkbox" onchange="get_notebooks()" value="11" id="chaptorsId" name="chaptorsId[]"> thermodynamics</label> </div>
</li>
<li>
<div class="checkbox"> <label>
<input type="checkbox" onchange="get_notebooks()" value="10" id="chaptorsId" name="chaptorsId[]"> thermodynamics</label> </div>
</li>
<li>
<div class="checkbox"> <label>
<input type="checkbox" onchange="get_notebooks()" value="9" id="chaptorsId" name="chaptorsId[]"> Applied Physics</label> </div>
</li>
<li>
<div class="checkbox"> <label>
<input type="checkbox" onchange="get_notebooks()" value="8" id="chaptorsId" name="chaptorsId[]"> thermodynamics</label> </div>
</li>
<li>
<div class="checkbox"> <label>
<input type="checkbox" onchange="get_notebooks()" value="7" id="chaptorsId" name="chaptorsId[]"> Applied Physics</label> </div>
</li>
<li>
<div class="checkbox"> <label>
<input type="checkbox" onchange="get_notebooks()" value="6" id="chaptorsId" name="chaptorsId[]"> fit</label> </div>
</li>
<li>
<div class="checkbox"> <label>
<input type="checkbox" onchange="get_notebooks()" value="5" id="chaptorsId" name="chaptorsId[]"> Applied Physics</label> </div>
</li>
<li>
<div class="checkbox"> <label>
<input type="checkbox" onchange="get_notebooks()" value="4" id="chaptorsId" name="chaptorsId[]"> fit</label> </div>
</li>
<li>
<div class="checkbox"> <label>
<input type="checkbox" onchange="get_notebooks()" value="3" id="chaptorsId" name="chaptorsId[]"> Applied Physics</label> </div>
</li>
<li>
<div class="checkbox"> <label>
<input type="checkbox" onchange="get_notebooks()" value="2" id="chaptorsId" name="chaptorsId[]"> Applied Physics</label> </div>
</li>
<li>
<div class="checkbox"> <label>
<input type="checkbox" onchange="get_notebooks()" value="1" id="chaptorsId" name="chaptorsId[]"> Applied Physics</label> </div>
</li>
</ul>
</div>
</div>
</form>
</div>
<div class="col-md-9 left-bx">
<div class="row">
<form name="srch_box_form" id="srch_box_form" method="POST">
<div class="search-bx">
<div class="col-md-8">
<div class="input-group">
<input type="text" name="srch_box" id="srch_box" class="form-control" placeholder="Search notes by (Student, Teacher, Chapter, Coaching, College, School)" value="">
<span class="input-group-btn"><button name="search" id="search" class="btn btn-default src-btn" type="submit"><i class="fa fa-search"></i> Search</button></span>
</div>
</div>
</div>
</form>
</div>
<form name="main_page_form" id="main_page_form" method="POST">
<div class="row" id="actData_div">
<div class="col-md-3">
<div class="detail">
<a href="http://securecamp.co/notebooks/chapterAllPages.php?c=1"><p class="index_book">Applied Physics</p></a>
<ul>
<li>Chapter: <span>Applied Physics</span></li>
<li>Subject: <span>Physics</span></li>
<li>Student: <span>Padam Jain</span></li>
<li>Teacher: <span>Amit Nimje</span></li>
<li class="two_rows">Coaching/College/School: <span>A.N. Institute of Engineering</span></li>
</ul><br>
<p><button type="button" class="btn btn-primary" onclick="window.location.href='http://securecamp.co/notebooks/all_property.php?c=1'">All Properties</button> <a href="http://securecamp.co/notebooks/download.php?file=1" id="download" class="btn btn-success">Download</a><!-- <button type="button" class="btn btn-info dwnld-btn">Download</button>--></p>
</div>
</div>
<div class="col-md-3">
<div class="detail">
<a href="http://securecamp.co/notebooks/chapterAllPages.php?c=2"><p class="index_book">Applied Physics</p></a>
<ul>
<li>Chapter: <span>Applied Physics</span></li>
<li>Subject: <span>Physics</span></li>
<li>Student: <span>Sunil Varma</span></li>
<li>Teacher: <span>Amit Nimje</span></li>
<li class="two_rows">Coaching/College/School: <span>A.N. Institute of Engineering</span></li>
</ul><br>
<p><button type="button" class="btn btn-primary" onclick="window.location.href='http://securecamp.co/notebooks/all_property.php?c=2'">All Properties</button> <a href="http://securecamp.co/notebooks/download.php?file=2" id="download" class="btn btn-success">Download</a><!-- <button type="button" class="btn btn-info dwnld-btn">Download</button>--></p>
</div>
</div>
<div class="col-md-3">
<div class="detail">
<a href="http://securecamp.co/notebooks/chapterAllPages.php?c=3"><p class="index_book">Applied Physics</p></a>
<ul>
<li>Chapter: <span>Applied Physics</span></li>
<li>Subject: <span>Physics</span></li>
<li>Student: <span>Amit</span></li>
<li>Teacher: <span>padam</span></li>
<li class="two_rows">Coaching/College/School: <span>A.N. Institute of Engineering</span></li>
</ul><br>
<p><button type="button" class="btn btn-primary" onclick="window.location.href='http://securecamp.co/notebooks/all_property.php?c=3'">All Properties</button> <a href="http://securecamp.co/notebooks/download.php?file=3" id="download" class="btn btn-success">Download</a><!-- <button type="button" class="btn btn-info dwnld-btn">Download</button>--></p>
</div>
</div>
<div class="col-md-3">
<div class="detail">
<a href="http://securecamp.co/notebooks/chapterAllPages.php?c=4"><p class="index_book">fit</p></a>
<ul>
<li>Chapter: <span>fit</span></li>
<li>Subject: <span>cs</span></li>
<li>Student: <span>furkan ahmad khan</span></li>
<li>Teacher: <span>yogesh chandra</span></li>
<li class="two_rows">Coaching/College/School: <span>hbti</span></li>
</ul><br>
<p><button type="button" class="btn btn-primary" onclick="window.location.href='http://securecamp.co/notebooks/all_property.php?c=4'">All Properties</button> <a href="http://securecamp.co/notebooks/download.php?file=4" id="download" class="btn btn-success">Download</a><!-- <button type="button" class="btn btn-info dwnld-btn">Download</button>--></p>
</div>
</div>
<div class="col-md-3">
<div class="detail">
<a href="http://securecamp.co/notebooks/chapterAllPages.php?c=5"><p class="index_book">Applied Physics</p></a>
<ul>
<li>Chapter: <span>Applied Physics</span></li>
<li>Subject: <span>Physics</span></li>
<li>Student: <span>hukam</span></li>
<li>Teacher: <span>amit</span></li>
<li class="two_rows">Coaching/College/School: <span>A.N. Institute of Engineering</span></li>
</ul><br>
<p><button type="button" class="btn btn-primary" onclick="window.location.href='http://securecamp.co/notebooks/all_property.php?c=5'">All Properties</button> <a href="http://securecamp.co/notebooks/download.php?file=5" id="download" class="btn btn-success">Download</a><!-- <button type="button" class="btn btn-info dwnld-btn">Download</button>--></p>
</div>
</div>
<div class="col-md-3">
<div class="detail">
<a href="http://securecamp.co/notebooks/chapterAllPages.php?c=6"><p class="index_book">fit</p></a>
<ul>
<li>Chapter: <span>fit</span></li>
<li>Subject: <span>cs</span></li>
<li>Student: <span>saurav Jain</span></li>
<li>Teacher: <span>amit</span></li>
<li class="two_rows">Coaching/College/School: <span>hbti</span></li>
</ul><br>
<p><button type="button" class="btn btn-primary" onclick="window.location.href='http://securecamp.co/notebooks/all_property.php?c=6'">All Properties</button> <a href="http://securecamp.co/notebooks/download.php?file=6" id="download" class="btn btn-success">Download</a><!-- <button type="button" class="btn btn-info dwnld-btn">Download</button>--></p>
</div>
</div>
<div class="col-md-3">
<div class="detail">
<a href="http://securecamp.co/notebooks/chapterAllPages.php?c=7"><p class="index_book">Applied Physics</p></a>
<ul>
<li>Chapter: <span>Applied Physics</span></li>
<li>Subject: <span>Physics</span></li>
<li>Student: <span>gaurav gupta</span></li>
<li>Teacher: <span>wazid</span></li>
<li class="two_rows">Coaching/College/School: <span>hbti</span></li>
</ul><br>
<p><button type="button" class="btn btn-primary" onclick="window.location.href='http://securecamp.co/notebooks/all_property.php?c=7'">All Properties</button> <a href="http://securecamp.co/notebooks/download.php?file=7" id="download" class="btn btn-success">Download</a><!-- <button type="button" class="btn btn-info dwnld-btn">Download</button>--></p>
</div>
</div>
<div class="col-md-3">
<div class="detail">
<a href="http://securecamp.co/notebooks/chapterAllPages.php?c=8"><p class="index_book">thermodynamics</p></a>
<ul>
<li>Chapter: <span>thermodynamics</span></li>
<li>Subject: <span>cs</span></li>
<li>Student: <span>furkan khan</span></li>
<li>Teacher: <span>ygsh</span></li>
<li class="two_rows">Coaching/College/School: <span>hbti</span></li>
</ul><br>
<p><button type="button" class="btn btn-primary" onclick="window.location.href='http://securecamp.co/notebooks/all_property.php?c=8'">All Properties</button> <a href="http://securecamp.co/notebooks/download.php?file=8" id="download" class="btn btn-success">Download</a><!-- <button type="button" class="btn btn-info dwnld-btn">Download</button>--></p>
</div>
</div>
<div class="col-md-3">
<div class="detail">
<a href="http://securecamp.co/notebooks/chapterAllPages.php?c=9"><p class="index_book">Applied Physics</p></a>
<ul>
<li>Chapter: <span>Applied Physics</span></li>
<li>Subject: <span>Physics</span></li>
<li>Student: <span>Padam Jain</span></li>
<li>Teacher: <span>Amit Kumar</span></li>
<li class="two_rows">Coaching/College/School: <span>A.N. Institute of Engineering</span></li>
</ul><br>
<p><button type="button" class="btn btn-primary" onclick="window.location.href='http://securecamp.co/notebooks/all_property.php?c=9'">All Properties</button> <a href="http://securecamp.co/notebooks/download.php?file=9" id="download" class="btn btn-success">Download</a><!-- <button type="button" class="btn btn-info dwnld-btn">Download</button>--></p>
</div>
</div>
<div class="col-md-3">
<div class="detail">
<a href="http://securecamp.co/notebooks/chapterAllPages.php?c=10"><p class="index_book">thermodynamics</p></a>
<ul>
<li>Chapter: <span>thermodynamics</span></li>
<li>Subject: <span>Physics</span></li>
<li>Student: <span>Amit Kumar</span></li>
<li>Teacher: <span>Nimje</span></li>
<li class="two_rows">Coaching/College/School: <span>hbti</span></li>
</ul><br>
<p><button type="button" class="btn btn-primary" onclick="window.location.href='http://securecamp.co/notebooks/all_property.php?c=10'">All Properties</button> <a href="http://securecamp.co/notebooks/download.php?file=10" id="download" class="btn btn-success">Download</a><!-- <button type="button" class="btn btn-info dwnld-btn">Download</button>--></p>
</div>
</div>
<div class="col-md-3">
<div class="detail">
<a href="http://securecamp.co/notebooks/chapterAllPages.php?c=11"><p class="index_book">thermodynamics</p></a>
<ul>
<li>Chapter: <span>thermodynamics</span></li>
<li>Subject: <span>basic electronics</span></li>
<li>Student: <span>furkan khan</span></li>
<li>Teacher: <span>tgsh</span></li>
<li class="two_rows">Coaching/College/School: <span>hbti</span></li>
</ul><br>
<p><button type="button" class="btn btn-primary" onclick="window.location.href='http://securecamp.co/notebooks/all_property.php?c=11'">All Properties</button> <a href="http://securecamp.co/notebooks/download.php?file=11" id="download" class="btn btn-success">Download</a><!-- <button type="button" class="btn btn-info dwnld-btn">Download</button>--></p>
</div>
</div>
<div class="col-md-3">
<div class="detail">
<a href="http://securecamp.co/notebooks/chapterAllPages.php?c=12"><p class="index_book">matrix</p></a>
<ul>
<li>Chapter: <span>matrix</span></li>
<li>Subject: <span>mathematics</span></li>
<li>Student: <span>Furkan ahmad khan</span></li>
<li>Teacher: <span>yogesh chandra</span></li>
<li class="two_rows">Coaching/College/School: <span>mpec</span></li>
</ul><br>
<p><button type="button" class="btn btn-primary" onclick="window.location.href='http://securecamp.co/notebooks/all_property.php?c=12'">All Properties</button> <a href="http://securecamp.co/notebooks/download.php?file=12" id="download" class="btn btn-success">Download</a><!-- <button type="button" class="btn btn-info dwnld-btn">Download</button>--></p>
</div>
</div>
<div class="col-md-12" id="show_more_main12"><a href="javascript:void(0);" class="show_more" id="12">More...</a>
<input type="hidden" name="rateval" id="rateval" value="0">
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- <footer>
<div class="container-fluid">
<div class="row">
<div class="col-md-3">
<ul class="social">
<li> <a href="#"><img src="images/fb.jpg"></a></li>
<li> <a href="#"><img src="images/g-pluus.jpg"></a></li>
<li> <a href="#"><img src="images/in.jpg"></a></li>
<li> <a href="#"><img src="images/twitter.jpg"></a></li>
<li> <a href="#"><img src="images/you-tube.jpg"></a></li>
</ul>
</div>
<div class="col-md-6 f-menu">
<ul class="nav nav-pills">
<li class=""><a href="http://securecamp.co/notebooks/index.php">Home</a></li>
<li ><a href="#">About us</a></li>
<li ><a href="#">Help</a></li>
<li ><a href="#">Terms & Conditions</a></li>
<li ><a href="#">Privacy Policy</a></li>
</ul>
</div>
<div class="col-md-3"><p class="copy-right">Copyrights reserve by <span>Company Name</span></p></div>
</div>
</div>
</footer>-->
<span style="height: 20px; width: 40px; position: absolute; opacity: 1; z-index: 8675309; display: none; cursor: pointer; border: none; background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAAAoCAYAAABpYH0BAAAHjElEQVR4Ae1bBXAbvRLO0GNmpv+VmflnZmZmZi4zMzMzM4Y58ZwTz4SZnZzpjLWzBa38Zs8aO332pdy7ma9JPmml1XfSaqXacfgYjRIcPrwP9u7dqSMKHDq0D5hmiLi4vDwJEH6/H86dOxcFdAQCfq5ZQUEexOHM8/l8cPbsWR0xADVD7eJwSuqCaANqpwt4MQTU9uiPLuDFErC1tVUDdFw0AV0l5VA1dS4Y7n4SUv7VD+J/0QHif3YT/1168Dmonb8MfBbr9StgIBDQBE9DE+Q//zYX69QP/3NBJP6pO1TPXgwBvx9trwu0S0BblgFSOwwigRJ+1xnyn3wVqqfNh6aVG6Fu7mIofudzSL1poCCk6aX3wO/1XV8C4ikkFjgKSiD5b71IlIIX3oHTbDayR5ji/GEdVU+dK8zS0m8mYDvXPLQJyDLw7CH3khjlTAx8LmSDYtbOXEg28b/sAPb8Qir3ebxg3ncY5MTUiz5Ir80BTTv2UX+R4KyownraBcRjSbRo3LaHhDDc8Ri0BgKcd5lboOTL0ZDPZqOclBpmh/XSuwwj2+IPv+a81+2B3DsfI75+/VbkLwpczTKkdx+B7fKNzSblCeVl42dA8j/78PLaZWtjbl+TgManXqPBWk4mBXmvF7KH3U98CnOKCRNmW/zul1QnvdfNnDMfPkEcomzklIsmYOWMBULbTdv3Ik8+J/+9N5UpRSXaBfR6vVEj5d99sUMeA/3/4xp3H0ROgFJbF2ZbMW66uun8thPnbAaJ4mMKG5CztAL5i4LGDduov6w+t4FPUahMzjJQWep/B6EgMbdPAno8nqhx6sfBTrMH3k1c6feTwlIW1kGYbdk3E9U4+PMOyPF69uQMqF+8Gk43y2R3MYBxSt5zCJpWb4ZWl1AmzM6CF9/V0r42AZP/3CP4RgfcRVzozEIYH3kxom3Bqx+qb/3f/ThXtXAlSI+9xPAytJxIpLp2FtilJ14F6dGXoPCT78AqmcDI4mtqx8Ec+S+/D0pdwwV9Lfl6QrDtJ14BW1Ep5/JZGpVz+6NsJfUnX9I6D+WcxMKTJgHdbnfUyBn+QHAJ/rojOOobOGfef0QQsHbBioi2Wf3vFDYgxqHzxDEBqW7l3MWq2DcNYEu+c1iYMDz0XJt+Kk1mnOU0251sk7MyEck+AnKDPkULbQJWz1LTEdNbn3FOzsolDpe4s7I6zM5aXAanfqrmgpVs1lpNheqy/2M38DjV+sYnXxUHd/ODUP7VeBbLbicOd9a2/KzbskuwRc7O/Cr7gmUKT71OZXjcLPt8JIclMUWbgE6nM2p4HQ4ekPlO2n045yoox2Nct+HYeJid6d0vQuLff3nuVTl/GXHSwy+o9RVFSNSL3vqMck1bcoa6Ef2+c5t+Fryj9lf+7STOoV/YRtWUuVRW+PrHyCFwWcakBQmoKEpM8LHlYHrmDXSM/y09qaY2mBo4mmWhfgNb4vE/+68QtNEBSZ1lbGYvovpNKapIyX/thUkuldWG7KzZg+9p08eMPreGhgahzHDvU2reuW4LcpqgWUAcfCCYQOPfbBn0FWMTu4FpZstaLiyCEpasJvymkxrP/jOAX0IoDgfmi8RbDRK1XzZ5NvGm594W+i54T51ZpZ+PiuifpbwCQwmd0d0O9QU4rFZI/EMXCjeYbrVbQIfDoRnNBkm4UMD8LkKApnzLXVwanGWpmULizV4KtRk6Q+qWrRX6ywiGDw7zgWMRfapavl59mXc/IZQ1HDlJZRhP0RetY78oAlYuWK7GMTZw64nE0CMbxaoSFgNPt8gkVPm0+VRufPwVag9nT8KvO1CZrbhMLauqoY0Iz9NOiyWiT/mvfED2FSOnCGWYCtFxkvmEXLsFtNvtmmF87i11Z500BwXCKxlQciSQ9x0BR1oWtHr4sQ47JTvp6deF2xniX3qPePYiBJvaXQeoLKPXzW36lNlX3anrWMwkexaLQzOBavbyeRl7EebMnJjHTgJarVbNSOs0hBySU7OQQ1CsxJ+R7LIG3k12Eku8G1nMzHv9I+IQhW98LNhUhOSGiSyhrz8eDzVMVF6uAlMiqpfDLipq2Xm7YulqtBETfnYZ3HAqCQwsiY9ns95skGIae7sFtDQ20hvFkwVuDNHaSvc/g3YC8EysxlC+Qwo2dZt2Ih+G8oUrhXrGR1+KWA83Ddq4RODlL852bQJaLBZNMEt56i0KW4ax2MrH4zE2CsvVcugEJP6e75Bs5+4ItqoawUaxWjEpFs7TRW9+CoosC/W8DCUffsN2224hu39/MG/cCbb4FDyrE48XGHhXiSEm1vG3W8Bmo4kuD5Sa2phscWkHZAvfdFySCeMmcvgf1vj5E/yJbznMLoCpU7YB7EyIQIscceBoh5cSGHudBiO4C0rwZpxCSiuDkmXAfpHHBBvttAsoy7I2VFUHA/WC5dhgrPZoQ5tEDHZYH+3+b59YjnVR0Eg89asR2gVUHaFTBfHXPy6egAhcQtrtdQERuoAtLS06NEAX8GIJaDabdWgAFxA/ptrQUBejsQ7UDLXjHzLPzExjREOUxjpQK9SsoMAIcewf/jWHQ4e0fM1B/5rDebD10oZZukwlAAAAAElFTkSuQmCC"); background-color: transparent; background-size: 40px 20px;"></span></body></html>relogin