$(document).ready(function(){

})

function popMovie(id , item_id , title , w , h) {
	h = h + 15;
	
	var windowWidth = document.documentElement.clientWidth;  
	var windowHeight = document.documentElement.clientHeight; 
	
	var urlString = 'movie.php?id=' + id + '&item_id=' + item_id;
	
//fix this if, which is currently pointless
if(!newWin || newWin.closed() ) {	
	var newWin = window.open(urlString ,null,"height=" + h + ",width=" + w + ",status=0,toolbar=0,menubar=0,location=0");
	newWin.document.close();
}
	newWin.focus();

return false;

}

