/*popup*/
function popContactUs(){
	var URL = "http://erms.samsungelectronics.com/customer/form/formmail/SEA/input_SEA.jsp?SITE_ID=22&PROD_TYPE=?&PROD_ID=35";
	var popId = "popContactUs";
    NewWindow( URL, popId, 555, 600, "yes", "center" );
}

function NewWindow(mypage,myname,w,h,scroll,pos){
	var LeftPosition=0;
	var TopPosition=0;
	if(pos=="random"){
		LeftPosition=(screen.width) ? Math.floor(Math.random()*(screen.width-w)):100;
		TopPosition=(screen.height) ? Math.floor(Math.random()*((screen.height-h)-75)):100;
	} else if(pos=="center"){
		LeftPosition=(screen.width) ? (screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;
	} else {
		LeftPosition=0;
		TopPosition=20;
	}
	LeftPosition=parseInt(LeftPosition);
	TopPosition=parseInt(TopPosition);
	// for IE
	if((navigator.appVersion.indexOf("MSIE") != -1) ? true : false){
		//h=h+35;
		h=Number(h)+35;
	}
	var settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
	var win=window.open(mypage,myname,settings);
	if (win==null)
	{ 
		if (navigator.appVersion.indexOf("MSIE") != -1)
		{
			// viewlayer('winalert_layer','on')
			alert("Please cancel popup interception");
		}		
	}
}

