function openBrWindow(theURL,winName,features) 



	{



 	 	 window.open(theURL,winName,features);



 	}







function check_radio(form,id,div,color) {

	

	

	

document.forms[form].elements[id].checked=true;



var colors = document.getElementById(color);	



var x=colors.getElementsByTagName("div");



for (i=0; i<x.length; i++) {

	

	x[i].style.border = "solid #ccc 2px";

	

}



	

	document.getElementById(div).style.border = "solid #8A004E 2px";



	

}











function open_window(action,id,productsform,colorid) 



{



	



				  var colid = colorid;



   			 	  var rad = document.getElementById("productsform" + id).elements.length;



				  for(i=0;i<document.getElementById("productsform" + id).elements.length;i++)   



				  {



      			  	if(document.getElementById("productsform" + id).elements[i].type == "radio")   



					  {



          		  		if(document.getElementById("productsform" + id).elements[i].checked)          



				  		{



                 	 	//store the value of a checked radio button



                  			var selection = document.getElementById("productsform" + id).elements[i].value;    



				  			var radiobutton = i;



				  			var formname = productsform + id;



				  			if(selection=='undefined') selection = 'null';



				  		}



                 



				 	 }



                

				}



				



				if(selection==undefined && rad !='0' && action !='show')



				{



					alert('אנא בחרו צבע');



					return(false);



				}





//CALL THICKBOX



tb_show('Shopping Card', 'http://www.facecos.co.il/cart_new.php?KeepThis=true&sd=".$_GET[sd]."&action=' + action + '&id=' + id + '&colid=' + selection + '&product_id='+ id + '&modal=true;TB_iframe=true&width=550&height=520', null);



}







function test(id,rad) {



document.forms[id].elements[rad].checked=true;



}




