
/** @brief Bug report
 *
 *@param 
 *@return 
 */
function report(hk) {
	if (hk != '') {
  	  var url = "/core/preview/bugReport.php";
	  	new Ajax.Request(url, {
	  		method:'get',
	  		parameters:{'hk':escape(hk)},
	  		onSuccess:function(xmlHttp) {
	  			var result = xmlHttp.responseText;
	  			alert(result);
	  		},
	  		onFailure:function(xmlHttp) {
	  		}
	  	});
	  		  	
	} 
}


// swf 전체화면
function fullScreenView(seq) {
	var fullScreen = window.open('/preview/full_view.php?seq=' + seq, 'newWin', 'toolbar=no,location=no, close=yes, titlebar=no, scrollbars=yes, status=no, resizable=yes, fullscreen=yes');
	fullScreen.focus();
}