// lazy shortcut

d=document;

// generic popper functions - scroll or no scroll

function popwin(url,name,width,height){
var t=(screen.height-height)/2;
var l=(screen.width-width)/2;
window.open(url,name,'width='+width+',height='+height+',top='+t+',left='+l+',location=0,status=0,scrollbars=0,toolbar=0,resizeable=no,noresize');
}

function popscroll(url,name,width,height){
var t=(screen.height-height)/2;
var l=(screen.width-width)/2;
window.open(url,name,'width='+width+',height='+height+',top='+t+',left='+l+',location=0,status=0,scrollbars=1,toolbar=0,resizeable=no,noresize');
}

// pop functions

function pop_synopsis(){
	popscroll('pop_synopsis.html','synopsis',457,400);
}

function pop_releasedates(){
	popscroll('http://www.sonypictures.net/movies/longestyard/release/pop_releasedates.html','releasedates',455,600);
}
