// link to 3 handset details

function openHandset(url,name,width,height,isScroll,isResize) 
{
	var scrolling = "no";
	var resizable = "no";
	if (isScroll)
		scrolling = "yes";
	if (isResize)
		resizable = "yes";
	var params="menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=" + scrolling + ",resizable=" + resizable + ",dependent,top=0,left=0,width="+width+",height="+height;
	popupWin = top.window.open(url, name,params);
}