function OpenLink(pNum){
	// version 1.0 12.21.2006
	//
	var newWin = 0;//open in self
	var plink = "http://www.motorola.com"; //default url
	if (pNum == undefined){
		var pNum = 2;
	}

	//
	//alert('OpenLink('+pNum+')'); // 4local test
	//
	switch (pNum) {
		case 1 :plink="experience/index.html"; newWin=1; break; // product advisor - bluetooth experience
		case 2 :plink="tutorial_bluetooth_final_es/index.html"; newWin=2; break; // product advisor - bluetooth experience
	}

	if (newWin==1) {
		window.open(plink,"motoLink","toolbar=no,width=820,height=610,status=no,scrollbars=no,resizable=no,menubar=no");
	} else if (newWin==2) {
		window.open(plink,"motoLink","toolbar=no,width=978,height=416,status=no,scrollbars=no,resizable=no,menubar=no");
	} else {
		window.location.href=plink;
	};
}
