// Open and Center

function ocwindow(the_url)
{
     var the_window=
            window.open(the_url, 'the_window','height=500,width=574,scrollbars');
     var screen_height = window.screen.availHeight;
     var screen_width = window.screen.availWidth;
     var left_point = parseInt(screen_width / 2) - 278;
     var top_point = parseInt(screen_height /2) - 240;
     the_window.moveTo(left_point, top_point);
}

function ocwindow2(the_url)
{
     var the_window=
            window.open(the_url, 'email_window','height=520,width=450,scrollbars');
     var screen_height = window.screen.availHeight;
     var screen_width = window.screen.availWidth;
     var left_point = parseInt(screen_width / 2) - 225;
     var top_point = parseInt(screen_height /2) - 250;
     the_window.moveTo(left_point, top_point);
}

function ocwindow3(the_url)
{
     var the_window=
            window.open(the_url, 'website_window','scrollbars');
     var screen_height = window.screen.availHeight;
     var screen_width = window.screen.availWidth;
     var left_point = parseInt(screen_width / 2) - 225;
     var top_point = parseInt(screen_height /2) - 250;
     the_window.moveTo(left_point, top_point);
}

function commercial(the_url)
{
     var video_window=
            window.open(the_url, 'video_window','height=380,width=450,scrollbars');
     var screen_height = window.screen.availHeight;
     var screen_width = window.screen.availWidth;
     var left_point = parseInt(screen_width / 2) - 278;
     var top_point = parseInt(screen_height /2) - 240;
     video_window.moveTo(left_point, top_point);
}

function tvplayer(the_url)
{
     var commercial_window=
            window.open(the_url, 'commercial_window','height=665,width=328 ');
     var screen_height = window.screen.availHeight;
     var screen_width = window.screen.availWidth;
     var left_point = parseInt(screen_width / 2) - 278;
     var top_point = parseInt(screen_height /2) - 340;
     the_window.moveTo(left_point, top_point);
}
// show me -->
