// Check Page Size and resize SWF
var resDimWidth = 800;
var resDimHeight = 600;
//
if (screen.height <= 600 && screen.width <= 800) {
	resDimWidth = 710;
	resDimHeight = 534;
};

function getSmallPlayerDimensions() {
    var resDimWidth = 800;
    var resDimHeight = 600;
    if (screen.height <= 600 && screen.width <= 800) {
        resDimWidth = 710;
        resDimHeight = 534;
    };
    return { width: resDimWidth, height: resDimHeight };
}

function getLargePlayerDimensions() {
    var resDimWidth = 1014;
    var resDimHeight = 713;
    return { width: resDimWidth, height: resDimHeight };
}