//window open
function openToketeruWin(){
	var requirementWin=window.open('index.html','ToketeruWin','toolbar=0,location=0,scrollbars=0,width=900,height=600,resizable=0');
}



function open_window(val){
	if(val == "profile"){
		url = "./profile/index.html";
		w = 566;
		h = 332;
		scr=0;
	}else if(val == "about_us"){
		url = "./about_us/index.html";
		w = 689;
		h = 325;
		scr=0;
	}else if(val == "contact_us"){
		url = "./contact_us/index.html";
		w = window.open(url, val,'width=420,height=460,status=yes,scrollbars=yes,directories=no,menubar=no,resizable=yes,toolbar=no');
	}

	if(val != "contact_us"){
		option = "width="+w+",height="+h+",status=no,scrollbars="+scr+",directories=no,menubar=no,resizable=no,toolbar=no";
		w = window.open(url,val,option);
	}
}





function open_login_window(tmp_url){
	val = 'login';
	url = tmp_url;
	w = 411;
	h = 520;
	scr=1;
	option = "width="+w+",height="+h+",status=no,scrollbars="+scr+",directories=no,menubar=no,resizable=no,toolbar=no";
	w = window.open(url,val,option);
}