밤하늘의 실제별, 나도 가질 수 있다?!


Expression.
인터넷 익스플로러(IE6,7)에서만 사용할 수 있는 CSS 표현입니다.
말도 많고 탈도 많은 녀석이죠.

자바스크립트가 최소단위인 천분의 일초로 작동을 한다면
이녀석은 수천분의 일초 아니 거의 만분의 일초까지도 되는 것 처럼 작동을 합니다.
(직접 세어보지는 않았습니다. 그냥 느낌이에요 느낌상-_-;)
예를 들어,
IE6에서는 표현이 불가능한 postion: fixed 속성을 expression으로 표현하면
스크롤을 겁나 빨리 내리고 올려도 울렁거림 없이 거의 완벽한 동작을 보여줍니다.

어떠한 동작(이벤트)이든 일어나는대로
이 수천분의 일초 간격으로 계속 대기하고 읽어들이고 값을 던져주고 있다는 겁니다.
그래서 브라우저에 부담을 주고 심지어는 브라우저를 멈추거나 셧다운-_- 시켜버린다는
무시무시한 소문을 안고 다니는 녀석이죠.

그래도 IE6에서는 지원되지 않는 수많은 CSS 속성을
expression을 사용하여 자바스크립트 언어로 표현이 가능한
엄청난 강점을 갖고 있어서 외면하려고 해도 가끔은 생각이납니다.-_-;

대략 2년 전인가요.
야후에서 근무하는 어떤 멋진(wow) 분이- (지금은 구글 olleh!)
expression의 살인적인 아니 살브라우저적인 호출을  상당히 줄여줄 수 있는 방법을 제시했습니다.


저 페이지를 처음 보았을 당시 전 이제 막 웹표준의 웹을 시작하고 있었던 터라
"음. 이런게 있군- expression 무서운 녀석." 이라고 그냥 넘기고 말았는데요.

오늘 max-height 때문에 expression을 써야하나 고민을 잠깐 하다가
max-height 같은 경우는 position: fixed 처럼 계속해서 읽어드릴 필요가 없이
페이지 열릴때 한번만 잡아주면 되거든요.
정말로 작동을 하는지, 진짜 차이가 있는건지 궁금해서 테스트 페이지를 한번 만들어 보았습니다.


예제 파일 : http://mkyoon.tomeii.com/expression.html (IE6, 7에서 보셔야 합니다.)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>One-Time Expressions</title>
<style type="text/css">
.onetime {
width: 200px;
padding: 10px;
border: 2px solid #666;
overflow: hidden;
/* 생각없이 쓴 expression */
height: expression( setCntr(), this.scrollHeight > 99 ? "100px" : "auto" );
/* 멋진 아저씨가 추천한 방법 */
/*height: expression(
setCntr(),
new Function('el', 'el.style.height = el.scrollHeight > 99 ? "100px" : "auto";')(this)
);*/
}
</style>
<script type="text/javascript">
//<![CDATA[
var gnExpr = 0;
var gCntrDisplay;
var gbOn = true;

function setCntr() {
gnExpr++;

if ( gbOn ) {
displayCntr();
}

return true;
}

function displayCntr() {
if ( ! gCntrDisplay ) {
gCntrDisplay = document.getElementById("cntrdisp");
}

if ( gCntrDisplay ) {
gCntrDisplay.value = gnExpr;
}
}

function setDisplay(bOn) {
gbOn = bOn;
}

//]]>
</script>
</head>
<body>
<input type="text" size="10" id="cntrdisp" disabled="disabled"/>
<div class="onetime">
(마우스를 움직여보세요.)
우리는 달려간다 이상한 나라로 니나가 잡혀있는 마왕의 소굴로
어른들은 모르는 사차원세계 날쌔고 용감한 폴이 여깄다
마술차 마술봉 딱부리 삐삐 찌찌 힘을 모으자 대마왕 손아귀에 니나를 구해내자
띠이빠빠 띠이빠빠 달려간다 삐삐
</div>
<p>출처 : http://stevesouders.com/hpws/onetime-expressions.php</p>
</body>
</html>

'생각없이 쓴 expression' 부분과
주석처리된 '멋진 아저씨가 추천한 방법'
주석부분을 바꿔서 열어보시면 차이를 바로 알 수 있습니다.
(정말로 딱 1개만 찍히네요. 오우 신기.)


결론 : expression 한번만 실행시키기.
CSSproperty: expression(
new Function('el', 'el.style.CSSproperty = 어쩌구 저쩌구 계산식')(this)
);



하지만 이방법도 완전한 해결책은 아니라고 하네요~
expression 자체가 위험하긴 하나봅니다. IE8에서도 내다버린 녀석이니까요.

Posted by mkyoon

2009/09/04 00:06 2009/09/04 00:06
, , , , , ,
Response
17 Trackbacks , No Comment
RSS :
http://mkyoon.com/rss/response/130

Trackback URL : http://mkyoon.com/trackback/130

Trackbacks List

  1. cryolite

    Tracked from cryolite 2009/10/01 06:53 Delete

    prophet muskwa <a href="http://prophet-muskwa.gscoiqrqnvq.com/">prophet muskwa</a> pucho <a href="http://pucho.gscoiqrqnvq.com/">pucho</a>

  2. Tracked from 2009/10/20 09:41 Delete

  3. liberator cube

    Tracked from liberator cube 2009/10/20 23:17 Delete

    defensewall driver not loaded <a href="http://defensewall-driver-not-loaded.ejatifyli.net/">defensewall driver not loaded</a> abloy locks <a href="http://abloy-locks.uvyduhin.net/">abloy locks</a>

  4. prince of egypt

    Tracked from prince of egypt 2009/10/20 23:51 Delete

    forniphilia <a href="http://forniphilia.asyhorigob.net/">forniphilia</a> drwatson postmortem debugger <a href="http://drwatson-postmortem-debugger.okosucusi.net/">drwatson postmortem debugger</a>

  5. onkyo tx-sr805

    Tracked from onkyo tx-sr805 2009/10/21 00:42 Delete

    timeless treasures fabric <a href="http://timeless-treasures-fabric.lajogibet.net/">timeless treasures fabric</a> corn fritter recipe <a href="http://corn-fritter-recipe.uvyduhin.net/">corn fritter recipe</a>

  6. angels ladies brothel

    Tracked from angels ladies brothel 2009/10/21 01:42 Delete

    tracer 9mm <a href="http://tracer-9mm.lajogibet.net/">tracer 9mm</a> air image purifier sharper <a href="http://air-image-purifier-sharper.asyhorigob.net/">air image purifier sharper</a>

  7. mundschenk wein

    Tracked from mundschenk wein 2009/10/21 02:33 Delete

    paula begoun <a href="http://paula-begoun.urycajuc.net/">paula begoun</a> anthony burger <a href="http://anthony-burger.mimawofot.net/">anthony burger</a>

  8. wellsboro pa

    Tracked from wellsboro pa 2009/10/21 03:30 Delete

    sugar busters <a href="http://sugar-busters.amivapuhox.net/">sugar busters</a> miltf videos sample <a href="http://miltf-videos-sample.amivapuhox.net/">miltf videos sample</a>

  9. rapid heart rate cozaar

    Tracked from rapid heart rate cozaar 2009/10/21 04:27 Delete

    scotttrade <a href="http://scotttrade.nititigipe.net/">scotttrade</a> craigs list dfw <a href="http://craigs-list-dfw.mimawofot.net/">craigs list dfw</a>

  10. genevieve picot

    Tracked from genevieve picot 2009/10/21 05:08 Delete

    starcraft mods <a href="http://starcraft-mods.amivapuhox.net/">starcraft mods</a> wisconsin public radio <a href="http://wisconsin-public-radio.urycajuc.net/">wisconsin public radio</a>

  11. la mosson rugby hospitality

    Tracked from la mosson rugby hospitality 2009/10/21 06:32 Delete

    victorian spanking <a href="http://victorian-spanking.urycajuc.net/">victorian spanking</a> 58mm camera filter for fujifilm s9600 <a href="http://58mm-camera-filter-for-fujifilm-s9600.nititigipe.net/">58mm camera filter for fujifilm s9600</a>

  12. aa route planner

    Tracked from aa route planner 2009/10/21 07:04 Delete

    oli sykes <a href="http://oli-sykes.ytuzydyzod.net/">oli sykes</a>

  13. Anabolic steroids zyrtec synthroid pravachol aciph

    Tracked from Anabolic steroids zyrtec synthroid pravachol aciph 2009/10/30 23:11 Delete

    Wellbutrin adderall and provigil <a href="http://blogcastrepository.com/members/Wellbutrin-adderall-and-provigil.aspx">Wellbutrin adderall and provigil</a> Propecia hairline <a href="http://blogcastrepository.com/members/Propecia-hairline.aspx">Propeci...

  14. Plavix and tpa

    Tracked from Plavix and tpa 2009/10/31 00:09 Delete

    Renova versus retin a <a href="http://blogcastrepository.com/members/Renova-versus-retin-a.aspx">Renova versus retin a</a> Soma san francisco <a href="http://blogcastrepository.com/members/Soma-san-francisco.aspx">Soma san francisco</a>

  15. Tapering off neurontin

    Tracked from Tapering off neurontin 2009/10/31 01:09 Delete

    Levitra cialis for women <a href="http://blogcastrepository.com/members/Levitra-cialis-for-women.aspx">Levitra cialis for women</a> Keyword celebrex <a href="http://blogcastrepository.com/members/Keyword-celebrex.aspx">Keyword celebrex</a>

  16. Sideffects of premarin

    Tracked from Sideffects of premarin 2009/10/31 02:05 Delete

    Lipitor side effects alternative m d <a href="http://blogcastrepository.com/members/Lipitor-side-effects-alternative-m-d.aspx">Lipitor side effects alternative m d</a> Imitrex oral dream pharmaceutical <a href="http://blogcastrepository.com/members/Imi...

  17. Cipro for lgv

    Tracked from Cipro for lgv 2009/10/31 04:39 Delete

    Zithromax storage <a href="http://blogcastrepository.com/members/Zithromax-storage.aspx">Zithromax storage</a> Glucophage sr <a href="http://blogcastrepository.com/members/Glucophage-sr.aspx">Glucophage sr</a>

Leave a comment

원래 "개, 캐" 라는 접두어를 싫어한다. (내가 개띠라서 그런거 절대 아니;;)
하지만 정말 사용 안할래야 안할 수가 없는 동감 백배천배만배의 글을 보고야 말았으니-

나를 미치게 하는 PNG - http://html.nhndesign.com/blog/?p=142

어흑 -_ㅠ

ps.
여기에 IE 버그를 더하자면.
AlphaImageLoader를 사용하면 링크가 안먹힌다는거~

Posted by mkyoon

2008/04/01 12:36 2008/04/01 12:36
, , , ,
Response
No Trackback , No Comment
RSS :
http://mkyoon.com/rss/response/91

Trackback URL : http://mkyoon.com/trackback/91

Leave a comment

IE에서 지원되는 CSS 목록은 다음에서 확인할 수 있다.

<select>  http://msdn2.microsoft.com/en-us/library/ms535893.aspx
<option>  http://msdn2.microsoft.com/en-us/library/ms535877.aspx

그리고 다음 문구도 확인할 수 있다.
- option Object Remarks -
Except for background-color and color, style settings applied through the style object for the option element are ignored. In addition, style settings applied directly to individual options override those applied to the containing SELECT element as a whole.
option 엘리먼트에는 오직 배경색과 글씨색만 바꿀 수 있다는 얘기다.
그래. 원래 IE에는 기대조차 안하고 있었으니 그렇다 치자.

하지만 "신기한" 현상을 목격해버렸..-_-
예제 파일을 만들어 보았으니 같이 함 보십시다.

- 예제 File Link 1 - select_euckr.html (ASCII / EUC-KR)
- 예제 File Link 2 - select_utf8.html (UTF-8)

두개의 문서의 차이는 단 하나. 인코딩-_-

select_euckr.html은 저장할 때 파일형식을 ASCII (notepad에선 ANSI)로 저장했고
select_utf8.html은 저장할 때 파일형식을 UTF-8로 저장했다.
물론 각각 character set(EUC-KR, UTF-8)도 알맞게 넣었다.

그럼 소스코드를 확인해보자.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr 또는 utf-8" />
<title>ASCII / EUC-KR 또는 UTF-8</title>
<style type="text/css">
body { font-family: Tahoma; }
select {
width: 120px;
height: 200px;
padding: 5px;
background: #ff0;
color: #f00;
font-family: Dotum;
font-size: 12px;
line-height: 2em;
}
option.test {
height: 20px;
margin: 5px;
padding: 10px;
background: #000 url(http://mkyoon.tomeii.com/mstar.gif) no-repeat 0 0;
color: #0ff;
font-family: Gungsuh;
font-size: 16px;
line-height: 2em;
}
</style>
</head>
<body>
<h1>EUC-KR 또는 UTF-8</h1>
<select size="5">
<option>IE 좀맞을래연</option>
<option class="test">IE 좀맞을래연</option>
<option>IE 좀맞을래연</option>
<option class="test">IE 좀맞을래연</option>
<option>IE 좀맞을래연</option>
<option>IE 좀맞을래연</option>
<option>IE 좀맞을래연</option>
<option>IE 좀맞을래연</option>
<option>IE 좀맞을래연</option>
<option class="test">IE 좀맞을래연</option>
<option>IE 좀맞을래연</option>
<option class="test">IE 좀맞을래연</option>
<option>IE 좀맞을래연</option>
<option>IE 좀맞을래연</option>
<option>IE 좀맞을래연</option>
<option>IE 좀맞을래연</option>
<option>IE 좀맞을래연</option>
</select>
</body>
</html>

두개 링크를 각각 IE(6,7다 똑같음-_-)와 FF에서 열어보면 다음과 같다.

- IE -
IE - ASCII EUC-KRIE - UTF-8
스타일 먹은거라곤
select : background-color, color, font-family, font-size, height, width
object : background-color, color 끝.

- FF -
FF - ASCII EUC-KRFF - UTF-8
select : background, color, font-family, font-size, height, line-height, padding, width
object : background, color, font-family, font-size, height, line-height, margin, padding
스타일 다 먹어주시고~ 훗-_-

여기서 끝이 아니라.
IE 스크린샷을 한번 보자. 뭔가 이상하지 않은가.
문서 인코딩 형식을 바꿨다고 저렇게 줄간격이 바뀌어도 되는건가?
IE에선 option은 height도 line-height도 안먹는단 말이다!

이건 뭥미?

IE는 utf-8 인코딩에서 문자 높이가 작아지는 현상이 있다고 한다.
결국 select 폰트크기를 좀더 크게 하여 해결함.

Posted by mkyoon

2008/03/29 17:40 2008/03/29 17:40
, , , , , , , ,
Response
No Trackback , No Comment
RSS :
http://mkyoon.com/rss/response/90

Trackback URL : http://mkyoon.com/trackback/90

Leave a comment

투명처리된 PNG 파일은 IE 6 에서 회색 바탕으로 나옵니다.
이를 해결하기 위해 PNG를 배경그림으로 넣고
AlphaImageLoader 필터를 씌우는데요.

특수한 경우
필터 먹은 DIV 안에 있는 링크를 아무리 눌러도
클릭이 되지 않는 현상이 생깁니다. (언제나 이상한 IE.)

필터먹인 DIV에
position: relative, absolute 설정을 주면
안에 있는 링크는 무용지물이 되고 맙니다.

해결방법

1. 필터 먹인 DIV에는 position 설정이 없거나 position: static;

2. 그 안에 들어있는 링크(a)에 relative 혹은 absolute 를 주세요.

끗.

Posted by mkyoon

2007/12/03 14:34 2007/12/03 14:34
, , , , ,
Response
20 Trackbacks , No Comment
RSS :
http://mkyoon.com/rss/response/79

Trackback URL : http://mkyoon.com/trackback/79

Trackbacks List

  1. fast forword

    Tracked from fast forword 2009/10/01 07:19 Delete

    lycoming cylinders <a href="http://lycoming-cylinders.gscoiqrqnvq.com/">lycoming cylinders</a> penis enlargement device comparisons <a href="http://penis-enlargement-device-comparisons.gscoiqrqnvq.com/">penis enlargement device comparisons</a>

  2. Tracked from 2009/10/20 08:52 Delete

  3. pretty pallas

    Tracked from pretty pallas 2009/10/20 21:47 Delete

    trike patrol <a href="http://trike-patrol.ejatifyli.net/">trike patrol</a> loli nudists <a href="http://loli-nudists.ejatifyli.net/">loli nudists</a>

  4. noel village foundry

    Tracked from noel village foundry 2009/10/20 23:17 Delete

    chris sare <a href="http://chris-sare.uvyduhin.net/">chris sare</a> nantucket inquirer mirror <a href="http://nantucket-inquirer-mirror.lajogibet.net/">nantucket inquirer mirror</a>

  5. barry ryan eloise

    Tracked from barry ryan eloise 2009/10/20 23:50 Delete

    newstar diana <a href="http://newstar-diana.asyhorigob.net/">newstar diana</a> raynor garage door opener <a href="http://raynor-garage-door-opener.uvyduhin.net/">raynor garage door opener</a>

  6. teen girl cheerleaders upskirts

    Tracked from teen girl cheerleaders upskirts 2009/10/21 00:42 Delete

    digital scrapbook freebies <a href="http://digital-scrapbook-freebies.okosucusi.net/">digital scrapbook freebies</a> letter from heaven <a href="http://letter-from-heaven.okosucusi.net/">letter from heaven</a>

  7. san antonio attractions

    Tracked from san antonio attractions 2009/10/21 01:45 Delete

    circuitron <a href="http://circuitron.lajogibet.net/">circuitron</a> marsha brady <a href="http://marsha-brady.asyhorigob.net/">marsha brady</a>

  8. myfriendshotmom gallery

    Tracked from myfriendshotmom gallery 2009/10/21 02:33 Delete

    crkt knives <a href="http://crkt-knives.amivapuhox.net/">crkt knives</a> holiday dinnerware <a href="http://holiday-dinnerware.nititigipe.net/">holiday dinnerware</a>

  9. jacquard ribbon

    Tracked from jacquard ribbon 2009/10/21 03:31 Delete

    daliah lavi <a href="http://daliah-lavi.ylogupen.net/">daliah lavi</a> greta van susteren <a href="http://greta-van-susteren.amivapuhox.net/">greta van susteren</a>

  10. versace landmark round watch

    Tracked from versace landmark round watch 2009/10/21 04:26 Delete

    gadis melayu bogel <a href="http://gadis-melayu-bogel.amivapuhox.net/">gadis melayu bogel</a> vince papale <a href="http://vince-papale.ylogupen.net/">vince papale</a>

  11. heywood wakefield furniture

    Tracked from heywood wakefield furniture 2009/10/21 05:08 Delete

    hepatitus c <a href="http://hepatitus-c.urycajuc.net/">hepatitus c</a> rustlers roost <a href="http://rustlers-roost.urycajuc.net/">rustlers roost</a>

  12. inexpensive vacations

    Tracked from inexpensive vacations 2009/10/21 07:21 Delete

    drops of jupiter lyrics <a href="http://drops-of-jupiter-lyrics.avejodoci.net/">drops of jupiter lyrics</a>

  13. Propecia hairline

    Tracked from Propecia hairline 2009/10/30 22:11 Delete

    Dream levitra online pharmaceutical <a href="http://blogcastrepository.com/members/Dream-levitra-online-pharmaceutical.aspx">Dream levitra online pharmaceutical</a> Good side effects to prednisone tablets <a href="http://blogcastrepository.com/members/...

  14. Anabolic steroids zyrtec synthroid pravachol aciph

    Tracked from Anabolic steroids zyrtec synthroid pravachol aciph 2009/10/30 23:11 Delete

    Wellbutrin adderall and provigil <a href="http://blogcastrepository.com/members/Wellbutrin-adderall-and-provigil.aspx">Wellbutrin adderall and provigil</a> Propecia hairline <a href="http://blogcastrepository.com/members/Propecia-hairline.aspx">Propeci...

  15. Tapering off neurontin

    Tracked from Tapering off neurontin 2009/10/31 01:09 Delete

    Levitra cialis for women <a href="http://blogcastrepository.com/members/Levitra-cialis-for-women.aspx">Levitra cialis for women</a> Keyword celebrex <a href="http://blogcastrepository.com/members/Keyword-celebrex.aspx">Keyword celebrex</a>

  16. Glucophage sr

    Tracked from Glucophage sr 2009/10/31 02:05 Delete

    Augmentin a antibiotic <a href="http://blogcastrepository.com/members/Augmentin-a-antibiotic.aspx">Augmentin a antibiotic</a>

  17. Brook sheilds on paxil

    Tracked from Brook sheilds on paxil 2009/10/31 03:34 Delete

    Tapering off neurontin <a href="http://blogcastrepository.com/members/Tapering-off-neurontin.aspx">Tapering off neurontin</a> Nexium anemia <a href="http://blogcastrepository.com/members/Nexium-anemia.aspx">Nexium anemia</a>

  18. Fosamax buy fosamax online home

    Tracked from Fosamax buy fosamax online home 2009/10/31 04:04 Delete

    Zithromax storage <a href="http://blogcastrepository.com/members/Zithromax-storage.aspx">Zithromax storage</a> Glucophage sr <a href="http://blogcastrepository.com/members/Glucophage-sr.aspx">Glucophage sr</a>

  19. Renova versus retin a

    Tracked from Renova versus retin a 2009/10/31 05:36 Delete

    How to wean off effexor comfortably <a href="http://blogcastrepository.com/members/How-to-wean-off-effexor-comfortably.aspx">How to wean off effexor comfortably</a> Sideffects of premarin <a href="http://blogcastrepository.com/members/Sideffects-of-pre...

  20. Levitra cialis for women

    Tracked from Levitra cialis for women 2009/10/31 06:06 Delete

    Levaquin tendinopathy <a href="http://blogcastrepository.com/members/Levaquin-tendinopathy.aspx">Levaquin tendinopathy</a> Brook sheilds on paxil <a href="http://blogcastrepository.com/members/Brook-sheilds-on-paxil.aspx">Brook sheilds on paxil</a>

Leave a comment

[ float left ]  [ absolute ]  [ float right ]

요렇게 나란히 DIV 형제가 세개 있는데
IE6 에서만 absolute 가 사라져버리는 현상입니다.
(IE Developer Toolbar 로 찍어봐도 나오지 않습니다)

absolute DIV 를 float left, right 뒤에 놓고
clear: both; 를 주세요.

그럼 나옵니다.
float 사이에 absolute 는 껴두지 않는것이 상책이겠죠.-_-;

하하하 IE6 너 정말 신기하구나~

Posted by mkyoon

2007/11/27 11:13 2007/11/27 11:13
, , ,
Response
18 Trackbacks , No Comment
RSS :
http://mkyoon.com/rss/response/78

Trackback URL : http://mkyoon.com/trackback/78

Trackbacks List

  1. sealy posturpedic mattress

    Tracked from sealy posturpedic mattress 2009/10/01 07:19 Delete

    lee landy <a href="http://lee-landy.gscoiqrqnvq.com/">lee landy</a> free resume templets <a href="http://free-resume-templets.gscoiqrqnvq.com/">free resume templets</a>

  2. Tracked from 2009/10/20 08:52 Delete

  3. candystand billards

    Tracked from candystand billards 2009/10/20 21:47 Delete

    actor gulager <a href="http://actor-gulager.lajogibet.net/">actor gulager</a> monteray ca <a href="http://monteray-ca.okosucusi.net/">monteray ca</a>

  4. hk416

    Tracked from hk416 2009/10/20 23:50 Delete

    scalloped corn <a href="http://scalloped-corn.okosucusi.net/">scalloped corn</a> japangirls <a href="http://japangirls.uvyduhin.net/">japangirls</a>

  5. repairable cars

    Tracked from repairable cars 2009/10/21 00:42 Delete

    wcpe <a href="http://wcpe.okosucusi.net/">wcpe</a> john haili <a href="http://john-haili.asyhorigob.net/">john haili</a>

  6. kayak roof rack

    Tracked from kayak roof rack 2009/10/21 01:45 Delete

    hp psc 1610 <a href="http://hp-psc-1610.ejatifyli.net/">hp psc 1610</a> pureology hair products <a href="http://pureology-hair-products.okosucusi.net/">pureology hair products</a>

  7. ky lotto

    Tracked from ky lotto 2009/10/21 02:33 Delete

    monster pik voor dit sletje <a href="http://monster-pik-voor-dit-sletje.mimawofot.net/">monster pik voor dit sletje</a> usafss <a href="http://usafss.mimawofot.net/">usafss</a>

  8. winne the pooh

    Tracked from winne the pooh 2009/10/21 03:31 Delete

    marlboro classics jacket <a href="http://marlboro-classics-jacket.amivapuhox.net/">marlboro classics jacket</a> sido mein testament <a href="http://sido-mein-testament.mimawofot.net/">sido mein testament</a>

  9. masonic rings

    Tracked from masonic rings 2009/10/21 04:26 Delete

    sealy reflexion <a href="http://sealy-reflexion.ylogupen.net/">sealy reflexion</a> xelox pharma <a href="http://xelox-pharma.mimawofot.net/">xelox pharma</a>

  10. lesbian foot fetish

    Tracked from lesbian foot fetish 2009/10/21 05:08 Delete

    rosh hoshana <a href="http://rosh-hoshana.amivapuhox.net/">rosh hoshana</a> marsha mason's <a href="http://marsha-masons.urycajuc.net/">marsha mason's</a>

  11. naked hippie chicks

    Tracked from naked hippie chicks 2009/10/21 06:33 Delete

    beretta px4 <a href="http://beretta-px4.amivapuhox.net/">beretta px4</a> ava cowan <a href="http://ava-cowan.amivapuhox.net/">ava cowan</a>

  12. Propecia hairline

    Tracked from Propecia hairline 2009/10/30 22:11 Delete

    Dream levitra online pharmaceutical <a href="http://blogcastrepository.com/members/Dream-levitra-online-pharmaceutical.aspx">Dream levitra online pharmaceutical</a> Good side effects to prednisone tablets <a href="http://blogcastrepository.com/members/...

  13. Anabolic steroids zyrtec synthroid pravachol aciph

    Tracked from Anabolic steroids zyrtec synthroid pravachol aciph 2009/10/30 23:11 Delete

    Pregnancy norvasc <a href="http://blogcastrepository.com/members/Pregnancy-norvasc.aspx">Pregnancy norvasc</a> Buspar generic <a href="http://blogcastrepository.com/members/Buspar-generic.aspx">Buspar generic</a>

  14. Lipitor side effects alternative m d

    Tracked from Lipitor side effects alternative m d 2009/10/31 00:09 Delete

    Renova versus retin a <a href="http://blogcastrepository.com/members/Renova-versus-retin-a.aspx">Renova versus retin a</a> Soma san francisco <a href="http://blogcastrepository.com/members/Soma-san-francisco.aspx">Soma san francisco</a>

  15. Tapering off neurontin

    Tracked from Tapering off neurontin 2009/10/31 01:09 Delete

    Buy followup post viagra <a href="http://blogcastrepository.com/members/Buy-followup-post-viagra.aspx">Buy followup post viagra</a> Plavix and tpa <a href="http://blogcastrepository.com/members/Plavix-and-tpa.aspx">Plavix and tpa</a>

  16. How to wean off effexor comfortably

    Tracked from How to wean off effexor comfortably 2009/10/31 02:05 Delete

    Lipitor side effects alternative m d <a href="http://blogcastrepository.com/members/Lipitor-side-effects-alternative-m-d.aspx">Lipitor side effects alternative m d</a> Imitrex oral dream pharmaceutical <a href="http://blogcastrepository.com/members/Imi...

  17. Pregnancy norvasc

    Tracked from Pregnancy norvasc 2009/10/31 05:37 Delete

    How to wean off effexor comfortably <a href="http://blogcastrepository.com/members/How-to-wean-off-effexor-comfortably.aspx">How to wean off effexor comfortably</a> Sideffects of premarin <a href="http://blogcastrepository.com/members/Sideffects-of-pre...

  18. Soma san francisco

    Tracked from Soma san francisco 2009/10/31 06:06 Delete

    Levaquin tendinopathy <a href="http://blogcastrepository.com/members/Levaquin-tendinopathy.aspx">Levaquin tendinopathy</a> Brook sheilds on paxil <a href="http://blogcastrepository.com/members/Brook-sheilds-on-paxil.aspx">Brook sheilds on paxil</a>

Leave a comment