/*
function launchCenterLoader(fileName){
		height = 500
		width = 500
		var str = "height=" + height + ",innerHeight=" + height;
		str += ",width=" + width + ",innerWidth=" + width;
		if (window.screen) {
		    var ah = screen.availHeight - 30;
		    var aw = screen.availWidth - 10;

		    var xc = (aw - width) / 2;
		    var yc = (ah - height) / 2;

		    str += ",left=" + xc + ",screenX=" + xc;
		    str += ",top=" + yc + ",screenY=" + yc;
		}
		alert(str);
		window.open(fileName, "Portolio", "Odyssey Productions, Inc.", str);

}
*/
function launchCenter(fileName, name, height, width){
	
	var str = "height=" + height + ",innerHeight=" + height;
	str += ",width=" + width + ",innerWidth=" + width;
	if (window.screen) {
    var ah = screen.availHeight - 30;
    var aw = screen.availWidth - 10;

    var xc = (aw - width) / 2;
    var yc = (ah - height) / 2;

    str += ",left=" + xc + ",screenX=" + xc;
    str += ",top=" + yc + ",screenY=" + yc;
  }
	window.open(fileName, name, str);

}
