var model_code = new Array();
var model_page = new Array();
var cntry_Cd = "ZA";
model_code[0] = "1A";
model_page[0] = "/content_data/LAAM/"+cntry_Cd+"/en/GBP"+cntry_Cd+"/ke/001/models/1A/index.html";

model_code[1] = "1B";
model_page[1] = "/content_data/LAAM/"+cntry_Cd+"/en/GBP"+cntry_Cd+"/ke/001/models/1B/index.html";

model_code[2] = "1C";
model_page[2] = "/content_data/LAAM/"+cntry_Cd+"/en/GBP"+cntry_Cd+"/ke/001/models/1C/index.html";

model_code[3] = "1D";
model_page[3] = "/content_data/LAAM/"+cntry_Cd+"/en/GBP"+cntry_Cd+"/ke/001/models/1D/index.html";

model_code[4] = "1F";
model_page[4] = "/content_data/LAAM/"+cntry_Cd+"/en/GBP"+cntry_Cd+"/ke/001/models/1F/index.html";

model_code[5] = "1G";
model_page[5] = "/content_data/LAAM/"+cntry_Cd+"/en/GBP"+cntry_Cd+"/ke/001/models/1G/index.html";



function call_model(modelCode)
{
	for(i=0;i<model_code.length;i++)
	{
		if(modelCode==model_code[i])
		{
//			location.href=model_page[i];
        
		//	window.open(model_page[i],'targetwindow','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,'width=' + screen.width + ', height=' + screen.height + ',left=0,top=0')
			

	      window.open(model_page[i],'mywindow','width=' + screen.width + ', height=' + screen.height + ',left=0, top=0,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes');

       
			break;

		}
	}


}