//==================================================================================================
// FILE	: vst_main_common.js
// DESC	: - common javascript functions for VST main pages
//				Dependencies: /lib/js/gp_common_new_v01.js
// BY 	: alfred cheong
// HIST	:	20020603 first version
//==================================================================================================

function shw_msg_use_time_popup(x_pos, y_pos, shwTimeSec) {
	var dynObj;

	dynObj = document.getElementById('msg_use_time_popup');
	if (dynObj != null) {
		dynObj.style.left=x_pos;
		dynObj.style.top=y_pos;
	}

	showObj('msg_use_time_popup');
	setTimeout('hideObj(\'msg_use_time_popup\')', shwTimeSec*1000);
}

function newWindow(link) {
	var newwin = window.open(link,'newwindow','location=no,toolbar=no,menubar=no,status=yes,scrollbars=yes,resizable=yes,width=680,height=500');
	newwin.focus();
}

