/*
//////////////////////////////////////////////////////////////////////////////
//	
//	Name:-        nc_gemoney.js
//	Location:-	  common/js
//	Description:- This  js file is included in the DCT's related to Sotheby's components.
//  Functions Included  : Yes.
//////////////////////////////////////////////////////////////////////////////
*/



// Start of Functions for Shortcut_Box Component

function clickOpenWindow(formObj){
	var selectedURL = formObj.selectSB.value;
	var url = selectedURL.substr(0,selectedURL.indexOf('*'));
	var target = selectedURL.substr(selectedURL.indexOf('*')+1,selectedURL.length);
	if(target == 'Same'){
		window.open(url,'_self'); 
	}
	else{
		window.open(url,'_blank'); 
	}
}

function changeOpenWindow(formObj){
	if (formObj.imgGo == null){
		clickOpenWindow(formObj);
	}
}
// End of Functions for Shortcut_Box Component