// Flash Pop ups
function PlaySWF(link, size, name) {
	window.open("http://enterpriseevent.amd.com/enterprise_assets/player_" + size + ".html?vid=" + name, "win", "width=500,height=225");
}

function PopUpSWF(link, name, width, height){
	if(width) window.open(link, name, "width="+width+",height="+height);
	else window.open(link, name);
}

function Clickheretoprint()
{ 
  var disp_setting="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
      disp_setting+="scrollbars=yes, left=100, top=25"; 
  var content_vlue = document.getElementById("print_content").innerHTML; 
  
  var docprint=window.open("","",disp_setting); 
   docprint.document.open(); 
   docprint.document.write('<html><head><title>AMD</title>'); 
   docprint.document.write('</head><body onLoad="self.print()">');          
   docprint.document.write(content_vlue);          
   docprint.document.write('</body></html>'); 
   docprint.document.close(); 
   docprint.focus(); 
}

function popupCenter (pageURL, title, w,h) {
var targetWin = window.open(pageURL, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=no, width=500, height=500');
} 

