// index-070411.js

function init(){
	if(document.getElementById && document.createTextNode)
	{
		var but1=document.getElementById('but1');
		var but2=document.getElementById('but2');
		var but3=document.getElementById('but3');
		var but4=document.getElementById('but4');
		var but5=document.getElementById('but5');
		
		but2.onclick=function(){launchDiaryonline();}
		but3.onclick=function(){openSeller();}
		but5.onclick=function(){window.open('/demo/demo-070411','demo','width=1024, height=768');}
	}

}

window.onload=function(){init();}
