// JavaScript Document
function ent(e,str) {
	var keynum;
	if(window.event) // IE
		{
		keynum = e.keyCode;
		}
	else if(e.which) // Netscape/Firefox/Opera
		{
		keynum = e.which;
		}
	if(keynum == '13') 
		popup(str);
}		


function popup(str) {

// Monitor felbontáshoz igazítva -------- >>
    var	swidth = ( screen.width )-10;
	var sheight = (screen.height)-68;
// << -------- Monitor felbontáshoz igazítva

// Aktuális ablak belso részéhez igazítva -------- >>

  var myWidth = 0, myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
    myHeight = window.innerHeight;
  } else if( document.documentElement &&
      ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth;
    myHeight = document.body.clientHeight;
  }
  // <<-------- Aktuális ablak belso részéhez igazítva


if(str.match("'") || str.match('"')) 
	str = str.replace(/'/,"\\'");
	

var win = window.open('http://origo.pirulapatika.hu/shop.php?betu=Mind&honnan=0&szures=search&origoID=ori005&keres='+str,"",'left=0,top=0,width='+myWidth+',height='+sheight+',resizable=yes,toolbar=yes,location=yes,status=yes,scrollbars=yes,menubar=yes');
if (window.focus) 
	win.focus();
}