// JavaScript Document
function blinkText()
{
	if(document.getElementById('blink').style.color=='red')
	{
		document.getElementById('blink').style.color='#000';
	}
	else
	{
		document.getElementById('blink').style.color='red';
	}
}
function PopupPic(sPicURL) 
{ 
	window.open(url_root_domain+"/popup.htm?"+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200");
}