// JavaScript Document

function show_cat_details() {
	var div_holder = document.getElementById("cat_details");
	div_holder.style.display = "block";
}

function hide_cat_details() {
	var div_holder = document.getElementById("cat_details");
	div_holder.style.display = "none";
}

function test() {
	alert('shit');
}

function resetselect(objID){
selObject=document.getElementById(objID)
//cycle through the options collection, setting the selected attribute of each to false
	for (i=0;i<selObject.options.length;i++){
	selObject.options[i].selected=false;
	}
} 

function print_view(lang,id,type) {
window.open( "http://www.mstumors.gr/index.php/application/print_view/"+lang+"/"+id+"/"+type, "myWindow", "status = 1, height = 600, width = 620, resizable = no, scrollbars=yes" );

//window.open( "http://192.168.1.1/root/diadyo/mstumors.gr/www/index.php/application/print_view/"+lang+"/"+id+"/"+type, "myWindow", "status = 1, height = 600, width = 620, resizable = no, scrollbars=yes" );
}
