
// popup window script 

function goWin() {
var mh = 430;
var mw = 680;
TheWin = window.open('','image','height=' + mh + ',width=' + mw + ',toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
TheWin.resizeTo(mw+2,mh+30);
TheWin.document.write('<!DOCTYPE html PUBLIC "-\/\/W3C\/\/DTD XHTML 1.0Transitional\/\/EN" "http:\/\/www.w3.org\/TR\/xhtml1\/DTD\/xhtml1-transitional.dtd"><html xmlns="http:\/\/www.w3.org\/1999\/xhtml">');
TheWin.document.write('<head><title>Mirsa Zrt. webmap<\/title><\/head><body style="overflow:hidden" bgcolor="000000">');
TheWin.document.write('<script type="text/javascript" src="http://widgetserver.com/syndication/subscriber/InsertPanel.js?panelId=09586223-cc6c-4def-b291-82bf24bc852e"></script><noscript></noscript><\/body><\/html>');
TheWin.moveTo(10,10);
TheWin.focus();
}


