// JavaScript Document




function openEditWindow(theURL,winName,features) { 
  editwindow=window.open(theURL,winName,features);
}



function colorboxes() { 
  	var i=0;
	var boxstr;
	for(i=1; i<20 ; i++){
		boxstr	="box_"+i;
		box		= document.getElementById(boxstr);
		if(box){
			box.style.border="1px solid red";
			box.style.margin="0px";
		}
	}
	
	var i=0;
	var list_boxstr;
	for(i=1; i<20 ; i++){
		list_boxstr	="itembox_"+i;
		box		= document.getElementById(list_boxstr);
		if(box){
			box.style.border="1px solid red";
		}
	}
	
	var i=0;
	var theme_boxstr;
	for(i=1; i<20 ; i++){
		theme_boxstr	="theme_box_"+i;
		box		= document.getElementById(theme_boxstr);
		if(box){
			box.style.border="1px solid orange";
		}
	}
	
	//alert('ok');
	
}

