

function positionPopupBox(boxid) {
    if($('#' + boxid)){
 	    if ($('#' + boxid).html()) {
		    var x = 450 - ($('#' + boxid).width() / 2);
		    $('#' + boxid).remove()
					      .appendTo('#wrapper')
					      .css('position', 'absolute')
					      .css('left', x + 'px')
					      .css('top', 150 + 'px')
					      .css('display','')
					      .show();
		    $('#' + boxid + ' .popup-box-top').append('<p class="popup-box-close"><a onclick="$(this).parent().parent().parent().hide();return false;" href="">Close</a></p>');
		    //$.scrollTo(x, 150);
	    }   
    }

}

function positionBrowserBox(boxid) {
	if ($('#' + boxid).html()) 
	{
		var x = 450 - ($('#' + boxid).width() / 2);
		$('#' + boxid).remove()
					  .appendTo('#wrapper')
					  .css('position', 'absolute')
					  .css('left', x + 'px')
					  .css('top', 150 + 'px')
					  .css('display','')
					  .show();
    }
}