<!-- 
//
// Soft Solution System Limited http://www.3s.com.hk
//

function ShowPopup( doc, props) {
	var new_window = window.open( doc,'_blank', props);
	new_window.focus();
}

function LaunchSlide( id) {
	var app = 'http://jsp.3s.com.hk/jsp/slideshow.jsp?showid=' + id + '&lang=en';
	var props = 'width=520,height=460,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no,resizable=no';
	var new_window = window.open( app,'_tutor', props);
	new_window.focus();
}

function LaunchFlash( id) {
	var app = 'http://jsp.3s.com.hk/jsp/flashshow.jsp?showid=' + id + '&lang=en';
	var props = 'width=800,height=600,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no,resizable=yes';
	var new_window = window.open( app,'_tutor', props);
	new_window.focus();
}

function LaunchApp( app, props) {
	var new_window = window.open( app,'_blank', props);
	new_window.focus();
}

function LaunchAppMax( app, props) {
	var new_window = window.open( app,'_blank', props);
 	new_window.moveTo(0,0);
	new_window.resizeTo(screen.width,screen.height);	
	new_window.focus();
}
		


-->

