// JavaScript Document

function popup(url) 
{
	newwin=window.open(url, 'newwin', 'width=800, menubar=yes, location=yes, resizable=yes, scrollbars=yes, status=yes');
	if (window.focus) {newwin.focus()}
}


function init() {

	if (!(window.parent.frames && window.parent.frames.length)) {
		window.location.replace('http://www.pure-jewelry.jp/');
	}

}


//window.onload = init; 

