function setPageWidth () {
   if (screen.width > 1000) 
   {
     document.images["pagewidth"].width=1000;
   }
}

function setOPISwidth () {
   if (screen.width > 1000) 
   {
	 //alert(document.images["opiswidth"].width);
	 document.images["opiswidth"].width=620;
	 //alert(document.images["opiswidth"].width);
   }
}
function setOPISwidth2 () {
   // alert(document.images["opiswidth"].width);
   if (screen.width > 1000) 
   {
	 //alert(document.images["opiswidth2"].width);
	 document.images["opiswidth2"].width=800;
	 //alert(document.images["opiswidth2"].width);
   }
}

function setOPISwidth3 () {
   if (screen.width > 1000) 
   {
	 alert(document.images["opiswidth3"].width);
	 document.images["opiswidth3"].width=620;
	 alert(document.images["opiswidth3"].width);
   }
}


function setOPISwidth4 (numermakra) {
   if (screen.width > 1000) 
   {
	    if((numermakra==0) || ( numermakra==1) || ( numermakra==2))
			{
	 		document.images["opiswidth4"].width=620;
	    }
			 if((numermakra==6) || ( numermakra==11) || ( numermakra==5) || ( numermakra==27))
			{
	 		document.images["opiswidth4"].width=800;
	    }
			 if((numermakra==4) || ( numermakra==10) || ( numermakra==7) || ( numermakra==8) || ( numermakra==9))
			{
	 		document.images["opiswidth4"].width=1000;
	    }
   }
}




function showDiv(divID) {
   document.getElementById(divID).style.display="block";
}

function hideDiv(divID) {
   document.getElementById(divID).style.display="none";
}

