// this is used by the configurators' code inserted through Rad editor
// see also the file:  /RadControls/Editor/ToolsFile.xml
function openConfigurator( couplerType, cameraBrand,skipSelector)
{ 		

	if (skipSelector==null || skipSelector==undefined)
	skipSelector="";
	
	if(couplerType.toLowerCase().indexOf("digitalcamera") < 0 ){
		couplerType = "";
	}
	window.open("/Configurator/default.aspx?CouplerType=" + couplerType + "&CameraBrand=" + cameraBrand + "&skipSelector=" + skipSelector , "", "resizable=no,scrollbars=no,width=600,height=500");
}

 