 /******************************************************************************
 Copyright (c) 2007 Samsung Electronics. All Rights Reserved.
 Project: Samsung.com Site Renewal(2009.05~09)

 File Name : s3_howtoguide_main.js
 Description : 
 Author : 하승범
 Since : 2009.08.04
 
 Modification Information
 Mod Date        Modifier         Description
 ----------      --------         ---------------------------
 2009.08.04       하승범          최초생성
 2009.09.23       deuksoo.bang    post->get방식으로 전환
******************************************************************************/

/**
* Guide List Move  
*/	
function moveGuideList() {
	var url = _SITE_CONTEXT+'support/howtoguide/supportHowToGuideMainList.do';
	
	//show or hide ajax loading
	$('div.view_contents').block();
	$('div.view_contents').load(url, function(){$('div.view_contents').unblock();} );// no cross-browser
}

/**
* Video List Move 
*/	
function moveVideoList() {
	var url = _SITE_CONTEXT+'support/howtoguide/supportHowToVideoMainList.do';
	
	//show or hide ajax loading
	$('div.view_contents').block();
	$('div.view_contents').load(url,function(){$('div.view_contents').unblock();} );// no cross-browser
	
}	

/**
* Guide Page Move
*/	
function moveGuidePage(pageNo) { 
	var url = _SITE_CONTEXT+'support/howtoguide/supportHowToGuideMainList.do?page='+pageNo;
	
	//show or hide ajax loading
	$('div.view_contents').block();
	$('div.view_contents').load(url, function() {$('div.view_contents').unblock();} );// no cross-browser
}

/**
* Video Page Move
*/	
function moveVideoPage(pageNo) {
	var url = _SITE_CONTEXT+'support/howtoguide/supportHowToVideoMainList.do?page='+pageNo;
	
	//show or hide ajax loading
	$('div.view_contents').block();		
	$('div.view_contents').load(url, function(){$('div.view_contents').unblock();} );// no cross-browser
	
}