/*
Zarindasht Agri-Jahad Web Site Java-Script File
------------------------------------------------
New window,
Show And Hide Element
------------------------------------------------
	Golden Palm Force.
Author : AMiR GHolami
E-Mail : Webmaser@jk-zarindasht.ir
Copyright 2005-2007 Zarrindasht Agri-Jahad , All Right Reserved .
PLEASE ! DON'T STEAL ! PLEASE
*/

function _Window(w,h,sts,scroll,resize,name,url) {
 var windowProperties='';
 windowProperties+='toolbar=no,';
 windowProperties+='location=no,'; 
 if(sts==false) windowProperties+='status=no,'; else windowProperties+='status=yes,';
 windowProperties+='menubar=no,';
 if(scroll==false) windowProperties+='scrollbars=no,';else windowProperties+='scrollbars=yes,';
 if(resize==false) windowProperties+='resizable=no,';else windowProperties+='resizable=yes,';
 if(w!="") windowProperties+='width='+w+',';
 if(h!="") windowProperties+='height='+h;
 if(windowProperties!="") { 
 if( windowProperties.charAt(windowProperties.length-1)==',') 
 windowProperties=windowProperties.substring(0,windowProperties.length-1); } 
 window.open(url,name,windowProperties);
}

function Show(ID) {
var Ele = document.getElementById(ID);
Ele.style.visibility = 'visible';
}

function Hide(ID) {
var Ele = document.getElementById(ID);
Ele.style.visibility = 'hidden';
}