
<!--
// Jose, 12/30/07 -- combined all four functions into; added the mw variable to store the window that's open, otherwise
// subsquent openings of these windows lose focus and are not properly resized.
var mw = null;
function openwindow(windowToOpen) {   
    if (mw != null) {mw.close();} 
    switch(windowToOpen) {
        case "cananalysis-small":
            mw = window.open("http://www.1stopdigital.net/client_videos/websitecanalysis1.html","mywindow","width=400,height=400");
            break;
        case "cananalysis-large":
            mw = window.open("http://www.1stopdigital.net/client_videos/websitecanalysis2.html","mywindow","width=670,height=600");	
            break;
        case "fasttrack-small":
            mw = window.open("http://www.1stopdigital.net/client_videos/ftrack1.html","mywindow","width=400,height=400");
            break;
        case "fasttrack-large":
            mw = window.open("http://www.1stopdigital.net/client_videos/ftrack2.html ","mywindow","width=670,height=600");
            break;
    }    
}
/*
function openwindow2()
{
    if (mw != null) {mw.close();}
	mw = window.open("http://www.1stopdigital.net/client_videos/websitecanalysis2.html","mywindow","width=670,height=600");	
}
function openwindow3()
{
    if (mw != null) {mw.close();}
	mw = window.open("http://www.1stopdigital.net/client_videos/ftrack1.html","mywindow","width=400,height=400");		
}
function openwindow4()
{
	if (mw != null) {mw.close();}
	mw = window.open("http://www.1stopdigital.net/client_videos/ftrack2.html ","mywindow","width=670,height=600");		
}
*/
//-->
