﻿/* 
 * popup
 * Copyright 2008 [c!]COLORS <shimizu@colors.jp>
 * http://www.colors.jp/
 */
 
function winOpen(url,name,width,height) {
	var newWin =window.open(url,name,"location=0,menubar=0, scrollbars=1,resizable=1,width=" + width + ',height=' + height + '"');
	newWin.focus();
}
function open_blank01(spass){
	var newWin = window.open(spass,"unhcr","menubar=1,toolbar=1,location=1,status=1,scrollbars=1,resizable=1");
	newWin.focus();
}
