
function resizeparent() {

var SiteCheck = new Array();
SiteCheck[0] = 'http://www.mmcafe.com/';
SiteCheck[1] = 'http://www.mmcafe.com';
SiteCheck[2] = 'http://mmcafe.com/';
SiteCheck[3] = 'http://mmcafe.com';
SiteCheck[4] = 'http://www.mmcafe.com/index2008-1.html';
var i=0; var a=0;
	for (i=0;i<5;i++){
		if (parent.location.href == SiteCheck[i]) { a=1; }
	}
	if (a == 1) { parent.resizeFrame(); }
}

