// JavaScript Document
function setFeatureBoxHeightAndWidth(movieid,height,width)
{
	var movie = getMovie(movieid);
	if(movie)
	{	
		height = Number(height);
		width = Number(width);
	    if(height <=120)
		{
			height = height+1;
		}
		if(width <=250)
		{
			width = width+1;
		}
		movie.height = height;
		movie.width = width;
	}
}
function getMovie(movieName) {
    if (navigator.appName.indexOf("Microsoft") != -1) {
        return window[movieName]
    }
    else {
        return document[movieName]
    }
}
