function Pop(winname,src,other){
	open(src,winname,other);
}
function PopStd(winname,src){
	open(src,winname,"height=400,weight=400,location=0,resiable=0,status=1,menubar=0,scrollbars=no");
}
function PopWin(winname,src,h,w,scll){
    if(h=='')h=400;
	if(w=='')w=400;
	if(scll=='')scll='no';
	
	other = "height="+h+",weight="+w+",scrollbars="+scll+",location=0,resiable=0,status=1,menubar=0";
	open(src,winname,other);
}
function PopImg(winname,src,h,w,scll){
    if(h=='')h=400;
	if(w=='')w=400;
	if(scll=='')scll='no';
	
	other = "height="+h+",weight="+w+",scrollbars="+scll+",location=0,resiable=0,status=0,menubar=0";
	open(src,winname,other);
}
function DisplayObj(id){
	did=eval("document.all."+id);

	if (did.style.display=='none'){
		did.style.display='';
	}
	else{
		did.style.display='none';
	}
}




