var examp_win = null;
var new_win = null;
function roll_over(cell){
	cell.bgColor = '#cccccc';
}
function roll_out(cell){
	cell.bgColor = '#faebd7';
}
function open_window(image_path)
{
	 new_win = open(image_path,'new_win','toolbar=no,scrollbars=yes,resizable=yes');
}
function open_example(image_path)
{
	var speed=400;
	var visible=0;
	var desc = 'Product Closeup';
	if (examp_win == null ){
		examp_win = open('pop_up.cfm?img_path='+image_path+'&desc='+desc,'examp_win','scrollbars=yes,resizable=yes,height=650,width=600');
	}
	else
	{
		examp_win.close();
		examp_win = open('pop_up.cfm?img_path='+image_path+'&desc='+desc,'examp_win','scrollbars=yes,resizable=yes,height=650,width=600');
	}
}
