function newpop(URLen,windowNamen,etc) {
				var windowNamen='armani_samsung';
				var browserName=navigator.appName;
				var operatingSystem=navigator.platform;
				var version = parseFloat(navigator.appVersion);
				//alert(browserName+"/"+version+"/"+operatingSystem);

				// Netscape check version 4.0+ on Win
				if (browserName.indexOf("Netscape")!=-1 && version>=4.0 && operatingSystem.indexOf("Mac")!=-1) {
					window.open(URLen,windowNamen,'titlebar=no,top=0,left=0,width=' + window.screen.availWidth+',height='+window.screen.availWidth+',screenX=0,screenY=0,top=0,left=0,scrollbars=yes')
				}

				// MSIE Mac check
				else if (browserName.indexOf("Microsoft Internet Explorer")!=-1 && operatingSystem.indexOf("Mac")!=-1) {
					window.open(URLen,windowNamen,'titlebar=no,top=0,left=0,width=' + window.screen.availWidth+',height='+window.screen.availWidth+',screenX=0,screenY=0,top=0,left=0,scrollbars=no')
				}

				// Netscape Mac check
				else if (browserName.indexOf("Netscape")!=-1 && operatingSystem.indexOf("Mac")!=-1) {
					window.open(URLen,windowNamen,'width='+screen.width+',height='+screen.height+',top=0,left=0,scrollbars=yes');
				}

				// MSIE Windows
				else if (browserName.indexOf("Microsoft Internet Explorer")!=-1 && operatingSystem.indexOf("Win")!=-1) {
				//alert(browserName+"/"+version+"/"+operatingSystem);
					//	alert(window.screen.height);
						//window.open(URLen,windowNamen,'fullscreen=yes')
						//window.open(URLen, windowNamen, 'channelmode=yes, scrollbars=yes');
						window.open(URLen,windowNamen,'channelmode=yes, titlebar=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,top=0,left=0,width=' + window.screen.availWidth+',height='+window.screen.availHeight+',screenX=0,screenY=0,statusbar=0')
					//win.moveTo(0,0);
					//win.resizeTo(screen.width, screen.height);
					//win.resizeTo(screen.width, screen.height);
					//popup(URLen,windowNamen)
				}

				// Netscape Windows
				else if (browserName.indexOf("Netscape")!=-1 && operatingSystem.indexOf("Win")!=-1) {
					window.open(URLen,windowNamen,'width='+screen.width+',height='+screen.height+',channelmode=yes,top=0,left=0,scrollbars=yes');
				} else {
					window.open(URLen,windowNamen,'scrollbars=no');
				}

			}
function popup(url, windowname) 
{
	params  = 'width='+screen.width;
	params += ', height='+screen.height;
	params += ', top=0, left=0'
	params += ', fullscreen=no';
	params += ', resizable=yes';
	
	

	newwin=window.open(url,windowname, params);
	if (window.focus) {newwin.focus()}
	return false;
}
