function manualStart(){
 
	if( ((version >= 4) && (platform == 'Windows') && (browser == 'IE'))) //If Flash 4 or above, browser>4.0 or on Windows, launch site
  {     
		var winWidth = screen.availWidth - adjWidth;
		var winHeight = screen.availHeight - adjHeight;
		var winWidth = 800;
        var winHeight = 600;
        var winSize = 'width=' + winWidth + ',height=' + winHeight;
        var Remedica = window.open('cd/cd/index.html', 'home', winSize + winOptions);
		if (Remedica!=null)
		{
		//location.href = "exit.htm";
		}
        Remedica.moveTo(((screen.availWidth-800)/2),((screen.availHeight-590)/2));
		if (window.focus) {Remedica.focus()};
   }

else{
	newwindow=document.open('cd/cd/welcome.htm','newpage','height=600,width=800');
	if (newwindow!=null)
		{
	//location.href = "exit.htm";
	}
	if (window.focus) {newwindow.focus()};
}			
}
		adjWidth = 30;
        adjHeight = 60;
if ((platform == 'Macintosh') && (browser == 'Netscape')) {
		adjWidth = 30;
        adjHeight = 50;
    }
    if ((platform == 'Macintosh') && (browser == 'IE')) {
		adjWidth = 30;
        adjHeight = 50;
        winOptions = ',fullscreen=no,status=no';
    }
if ((platform == 'Windows') && (browser == 'Netscape')) {
		adjWidth = 30;
        adjHeight = 50;
        winOptions = ',fullscreen=yes,status=no';
    }

if ( (platform == 'Windows') && (browser == 'IE') ) {
	winOptions = ',fullscreen=no,status=no';
} 




