function movePrw() {

	pUrl = '../see/index.html#a';

	if ( window.opener && !window.opener.closed ){ 
		window.opener.focus();
		window.opener.location.href = pUrl;
	} else { 
		window.open(pUrl,'main');
	}
}

function movePrw2() {

	pUrl = '../list/index.html';

	if ( window.opener && !window.opener.closed ){ 
		window.opener.focus();
		window.opener.location.href = pUrl;
	} else { 
		window.open(pUrl,'main');
	}
}


