// JS Information ======================================================
// Site URL:	http://www.livelabo.com/
// File name:	full_window.js
// Summary:	Another window is opened
// Created:	2009-09-01
// Last update:	2009-09-01
// Author:	Sadaoka(admin)
// Copyright:	(C) 2009 dabhand Inc.
//======================================================================

function Full_Win(thePage){
var theWidth = screen.availWidth;
var theHeight = screen.availHeight;
window.open(thePage,"window1","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=no,left=0,top=0,width="+theWidth+",height="+theHeight);
}
