
var screeningPopup=function(){var domElement=null;}
screeningPopup.prototype={show:function(x,y,newWindow){var openWindow=newWindow||false;if(openWindow){window.open('http://www.tinyprints.com/screening.html','screeningWindow','width=715, height=510, toolbar=no, location=no, status=no, location=no, toolbar=no, menubar=no, resizable=no, scrollbars=yes, copyhistory=no');}
else{var iFrame=document.createElement('iframe');iFrame.src='http://www.tinyprints.com/screening.html';iFrame.name='screeningFrame';iFrame.id='screeningFrame';iFrame.style.width='700px';iFrame.style.height='510px';iFrame.style.position='absolute';iFrame.style.top=x;iFrame.style.left=y;iFrame.style.border=0;iFrame.style.overflow='hidden';this.domElement=iFrame;if(iFrame.attachEvent){iFrame.attachEvent("onload",function(){window.screeningFrame.designScreen.callback=this.close.bind(this);}.bind(this));}else{iFrame.onload=function(){window.screeningFrame.designScreen.callback=this.close.bind(this);}.bind(this);}
document.body.appendChild(iFrame);}},close:function(){document.body.removeChild(this.domElement);}}
