/******************************************************************************
*
*
*
*
******************************************************************************/
var ns4 = document.layers;
var ie4 = document.all;
var ns6 = document.getElementById&&!document.all;
var crossobj = null;
var EnableMyPopup = 0;

checkPopupDate();
/******************************************************************************
*
*
*
*
******************************************************************************/
function checkPopupDate() {

	var today = new Date();
	var tz = today.getTimezoneOffset() / 60;

	if( tz>=14 ){
		tz=24-tz;
	}
	else{
		tz=-tz;
	}

	var y=today.getYear();
	var m=today.getMonth()+1;
	var d=today.getDate();
	var h=today.getHours();
	var mi=today.getMinutes();
	var hl= h + 8 - tz;
}

/******************************************************************************
*
*
*
*
******************************************************************************/
function insert_popup( title, src) {

	if( !EnableMyPopup ) {
		return;
	}
	
	document.write('<div id="postit" class="postit">');
	document.write('<div id="postit_title" class="popup_title"><b>');
	document.write( title );
	document.write('<span class="spantitle">');
	document.write('<img src="http://feefifofum.cocolog-nifty.com/blog/styles/scrolling_popup/close.gif" border="0" title="Close" align="right" WIDTH="11" HEIGHT="11" onclick="hideMyPostIt()">&nbsp;</b>');
	document.write('</span></div>');
	document.write('<div id="postit_content" class="popup_content">');
	document.write('<iframe src="');
	document.write( src );
	document.write('" id="postit_frame" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no" bordercolor="#000000"></iframe>');
	document.write('</div></div>');

	if (ns4) {
		crossobj = document.layers.postit;
	}
	else if (ie4||ns6) {
		crossobj = ns6? document.getElementById("postit") : document.all.postit;
	}

	hide_popup();
}

/******************************************************************************
*
*
*
*
******************************************************************************/
function hideMyPostIt() {

	if( !EnableMyPopup ) {
		return;
	}

	if (ie4||ns6) {
		crossobj.style.visibility="hidden";
	}
	else if (ns4) {
		crossobj.visibility="hide";
	}
}

/******************************************************************************
*
*
*
*
******************************************************************************/
function showMyPopIt() {

	if( !EnableMyPopup ) {
		return;
	}

	if (ie4||ns6) {
		crossobj.style.visibility = "visible";
	}
	else if (ns4) {
		crossobj.visibility = "show";
	}
}
